Spaces:
Running
Running
Create Streamlit (dashboard apps)
Browse files
Streamlit (dashboard apps)
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
st.title("My ML App")
|
| 4 |
+
|
| 5 |
+
text = st.text_input("Enter text")
|
| 6 |
+
st.write("AI Output:", text)
|