zakerytclarke commited on
Commit
0fdeef9
·
verified ·
1 Parent(s): 87b2e52

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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...'):