Spaces:
Runtime error
Runtime error
File size: 215 Bytes
2a67e1c |
1 2 3 4 5 6 7 8 9 10 11 |
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) |