colin4554 commited on
Commit
2a67e1c
1 Parent(s): c9f7259

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import numpy as np
3
+
4
+
5
+ with st.chat_message("user"):
6
+ st.write("Hello 👋")
7
+ st.line_chart(np.random.randn(30, 3))
8
+
9
+ prompt = st.chat_input("Say something")
10
+ if prompt:
11
+ st.write(prompt)