Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -112,15 +112,15 @@ def main():
|
|
112 |
st.markdown(message["content"])
|
113 |
|
114 |
# Accept user input
|
115 |
-
user_input = st.chat_input("Ask
|
116 |
|
117 |
s1, s2, s3 = st.columns([1, 2, 3])
|
118 |
with s1:
|
119 |
-
suggestion_button("
|
120 |
with s2:
|
121 |
-
suggestion_button("
|
122 |
with s3:
|
123 |
-
suggestion_button("
|
124 |
|
125 |
if user_input:
|
126 |
# Display user message in chat message container
|
|
|
112 |
st.markdown(message["content"])
|
113 |
|
114 |
# Accept user input
|
115 |
+
user_input = st.chat_input("Ask me anything")
|
116 |
|
117 |
s1, s2, s3 = st.columns([1, 2, 3])
|
118 |
with s1:
|
119 |
+
suggestion_button("Tell me about the varieties of tea", teapot_ai)
|
120 |
with s2:
|
121 |
+
suggestion_button("Who was born first, Alan Turing or John von Neumann?", teapot_ai)
|
122 |
with s3:
|
123 |
+
suggestion_button("Extract Google's stock price", teapot_ai)
|
124 |
|
125 |
if user_input:
|
126 |
# Display user message in chat message container
|