Du Mingzhe
commited on
Commit
·
5ac43ac
1
Parent(s):
58de0b5
Update
Browse files
app.py
CHANGED
@@ -3,4 +3,9 @@ import numpy as np
|
|
3 |
|
4 |
with st.chat_message("assistant"):
|
5 |
st.write("Hello human")
|
6 |
-
st.bar_chart(np.random.randn(30, 3))
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
with st.chat_message("assistant"):
|
5 |
st.write("Hello human")
|
6 |
+
st.bar_chart(np.random.randn(30, 3))
|
7 |
+
|
8 |
+
|
9 |
+
prompt = st.chat_input("Say something")
|
10 |
+
if prompt:
|
11 |
+
st.write(f"User has sent the following prompt: {prompt}")
|