Test_App / app.py
Tzetha's picture
added streamlit app
780f02f
raw
history blame
247 Bytes
import streamlit as st
st.title("Hugging Face + Streamlit Demo")
st.write("This is a demo Streamlit app for my Hugging Face repo!")
# Example interactive widget
user_input = st.text_input("Enter some text")
st.write(f"You entered: {user_input}")