Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -328,11 +328,11 @@ def main():
|
|
328 |
|
329 |
s1, s2, s3 = st.columns([1, 2, 3])
|
330 |
with s1:
|
331 |
-
user_input = suggestion_button("Tell me about teapotllm")
|
332 |
with s2:
|
333 |
-
user_input = suggestion_button("Who invented quantum mechanics?")
|
334 |
with s3:
|
335 |
-
user_input = suggestion_button("Extract the year Google was founded")
|
336 |
|
337 |
if user_input:
|
338 |
with st.spinner('Generating Response...'):
|
|
|
328 |
|
329 |
s1, s2, s3 = st.columns([1, 2, 3])
|
330 |
with s1:
|
331 |
+
user_input = suggestion_button("Tell me about teapotllm") or user_input
|
332 |
with s2:
|
333 |
+
user_input = suggestion_button("Who invented quantum mechanics?") or user_input
|
334 |
with s3:
|
335 |
+
user_input = suggestion_button("Extract the year Google was founded") or user_input
|
336 |
|
337 |
if user_input:
|
338 |
with st.spinner('Generating Response...'):
|