Arabiansands commited on
Commit
3d6dd44
·
verified ·
1 Parent(s): ef08715

Create Streamlit (dashboard apps)

Browse files
Files changed (1) hide show
  1. Streamlit (dashboard apps) +6 -0
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)