alexandre-huynh commited on
Commit
7531b71
1 Parent(s): 067b986

Updated prompt suggestions

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -233,13 +233,11 @@ import gradio as gr
233
 
234
  theme = gr.themes.Base(primary_hue="slate")
235
 
236
- suggestion_text_1 = "What's the weather like today?"
237
- suggestion_text_2 = "Can you provide stock market updates?"
238
- suggestion_text_3 = "I need assistance with my account."
239
 
240
- # Assuming generate_text is a function that generates a text response
241
  def respond(message):
242
- # You will need to implement generate_response to create a response to the user's message.
243
  response = generate_text(message)
244
  return response
245
 
 
233
 
234
  theme = gr.themes.Base(primary_hue="slate")
235
 
236
+ suggestion_text_1 = "What are the latest advancements in cancer research ?"
237
+ suggestion_text_2 = "Can you provide information on the latest research about sleep disorders ?"
238
+ suggestion_text_3 = "What are the usual causes of lung pain ?"
239
 
 
240
  def respond(message):
 
241
  response = generate_text(message)
242
  return response
243