Spaces:
Runtime error
Runtime error
File size: 153 Bytes
9c1ffe9 |
1 2 3 4 5 6 7 |
import numpy as np
import streamlit as st
message = st.chat_message("assistant")
message.write("Hello human")
message.bar_chart(np.random.randn(30, 3))
|