Tzetha commited on
Commit
780f02f
·
1 Parent(s): 3a560ce

added streamlit app

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.title("Hugging Face + Streamlit Demo")
4
+ st.write("This is a demo Streamlit app for my Hugging Face repo!")
5
+
6
+ # Example interactive widget
7
+ user_input = st.text_input("Enter some text")
8
+ st.write(f"You entered: {user_input}")