colin4554's picture
Create app.py
2a67e1c
raw
history blame
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)