zakerytclarke commited on
Commit
ae7ad2b
·
verified ·
1 Parent(s): e606f42

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -7
app.py CHANGED
@@ -304,10 +304,6 @@ def handle_chat(prompt, user_input, teapot_ai):
304
 
305
  return response
306
 
307
- def suggestion_button(user_prompt, suggestion_text, teapot_ai):
308
- if st.button(suggestion_text):
309
- handle_chat(user_prompt, suggestion_text, teapot_ai)
310
-
311
 
312
  def main():
313
  st.set_page_config(page_title="TeapotAI Chat", page_icon=":robot_face:", layout="wide")
@@ -329,11 +325,11 @@ def main():
329
 
330
  s1, s2, s3 = st.columns([1, 2, 3])
331
  with s1:
332
- suggestion_button(user_prompt, "Tell me about teapotllm", teapot_ai)
333
  with s2:
334
- suggestion_button(user_prompt, "Who invented quantum mechanics?", teapot_ai)
335
  with s3:
336
- suggestion_button(user_prompt, "Extract the year Google was founded", teapot_ai)
337
 
338
  if user_input:
339
  with st.spinner('Generating Response...'):
 
304
 
305
  return response
306
 
 
 
 
 
307
 
308
  def main():
309
  st.set_page_config(page_title="TeapotAI Chat", page_icon=":robot_face:", layout="wide")
 
325
 
326
  s1, s2, s3 = st.columns([1, 2, 3])
327
  with s1:
328
+ user_input = "Tell me about teapotllm"
329
  with s2:
330
+ user_input = "Who invented quantum mechanics?"
331
  with s3:
332
+ user_input = "Extract the year Google was founded"
333
 
334
  if user_input:
335
  with st.spinner('Generating Response...'):