Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Startup-Exchange
/
support-flow-chat-ui
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2a67e1c
support-flow-chat-ui
/
app.py
colin4554
Create app.py
2a67e1c
over 1 year ago
raw
Copy download link
history
blame
Safe
215 Bytes
import
streamlit
as
st
import
numpy
as
np
with
st.chat_message(
"user"
):
st.write(
"Hello π"
)
st.line_chart(np.random.randn(
30
,
3
))
prompt = st.chat_input(
"Say something"
)
if
prompt:
st.write(prompt)