Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -44,10 +44,10 @@ 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 = [
|
48 |
iface = gr.Interface(
|
49 |
fn=askme,
|
50 |
-
inputs=["
|
51 |
outputs="text",
|
52 |
examples = examples,
|
53 |
title="Medical AI Chatbot",
|
|
|
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",
|