ruslanmv commited on
Commit
b62c148
1 Parent(s): 3582a8a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -44,12 +44,16 @@ question = '''\
44
  Could these symptoms be related to hypothyroidism?
45
  If so, what steps should I take to get a proper diagnosis and discuss treatment options?
46
  '''
47
- examples = [symptoms, question]
 
 
 
 
48
  iface = gr.Interface(
49
  fn=askme,
50
  inputs=["text", "text"],
51
  outputs="text",
52
- examples = examples,
53
  title="Medical AI Chatbot",
54
  description="Ask me a medical question!"
55
  )
 
44
  Could these symptoms be related to hypothyroidism?
45
  If so, what steps should I take to get a proper diagnosis and discuss treatment options?
46
  '''
47
+
48
+ examples = [
49
+ [symptoms, question]
50
+ ]
51
+
52
  iface = gr.Interface(
53
  fn=askme,
54
  inputs=["text", "text"],
55
  outputs="text",
56
+ examples=examples,
57
  title="Medical AI Chatbot",
58
  description="Ask me a medical question!"
59
  )