Spaces:
Sleeping
Sleeping
added streamlit app
Browse files
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}")
|