rajkstats commited on
Commit
d0b43f2
·
1 Parent(s): 1d1a7b8

changes to welcome screen

Browse files
Files changed (1) hide show
  1. app.py +18 -18
app.py CHANGED
@@ -356,24 +356,24 @@ async def on_chat_start():
356
  )
357
 
358
 
359
- potential_questions = [
360
- "What should I be careful of when taking Metformin?",
361
- "What are the contraindications of Aspirin?",
362
- "Are there low-cost alternatives to branded Aspirin available over-the-counter?",
363
- "What precautions should I take if I'm pregnant or nursing while on Lipitor?",
364
- "Should Lipitor be taken at a specific time of day, and does it need to be taken with food?",
365
- "What is the recommended dose of Aspirin?",
366
- "Can older people take beta blockers?",
367
- "How do beta blockers work?",
368
- "Can beta blockers be used for anxiety?",
369
- "I am taking Aspirin, is it ok to take Glipizide?",
370
- "Explain in simple terms how Metformin works?"
371
- ]
372
- await cl.Message(
373
- content="**Welcome to PharmAssistAI ! Here are some potential questions you can ask:**",
374
- actions=[cl.Action(name="ask_question", value=question, label=question) for question in potential_questions]
375
- ).send()
376
- cl.user_session.set("potential_questions_shown", True)
377
 
378
 
379
 
 
356
  )
357
 
358
 
359
+ potential_questions = [
360
+ "What should I be careful of when taking Metformin?",
361
+ "What are the contraindications of Aspirin?",
362
+ "Are there low-cost alternatives to branded Aspirin available over-the-counter?",
363
+ "What precautions should I take if I'm pregnant or nursing while on Lipitor?",
364
+ "Should Lipitor be taken at a specific time of day, and does it need to be taken with food?",
365
+ "What is the recommended dose of Aspirin?",
366
+ "Can older people take beta blockers?",
367
+ "How do beta blockers work?",
368
+ "Can beta blockers be used for anxiety?",
369
+ "I am taking Aspirin, is it ok to take Glipizide?",
370
+ "Explain in simple terms how Metformin works?"
371
+ ]
372
+ await cl.Message(
373
+ content="**Welcome to PharmAssistAI ! Here are some potential questions you can ask:**",
374
+ actions=[cl.Action(name="ask_question", value=question, label=question) for question in potential_questions]
375
+ ).send()
376
+ cl.user_session.set("potential_questions_shown", True)
377
 
378
 
379