nateraw's picture
Upload app.py with huggingface_hub
933f15b
raw
history blame contribute delete
154 Bytes
import streamlit as st
st.title("Hello World")
text = st.text_input("What's your name")
if text.strip() != "":
st.write(f"Hello, {text.strip()}!")