Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -93,8 +93,8 @@ welcome_message = '''
|
|
93 |
iface = gr.Interface(
|
94 |
fn=askme,
|
95 |
inputs=[
|
96 |
-
gr.
|
97 |
-
gr.
|
98 |
],
|
99 |
outputs="text",
|
100 |
examples=examples,
|
@@ -103,5 +103,4 @@ iface = gr.Interface(
|
|
103 |
css=css
|
104 |
)
|
105 |
|
106 |
-
iface.
|
107 |
-
iface.launch()
|
|
|
93 |
iface = gr.Interface(
|
94 |
fn=askme,
|
95 |
inputs=[
|
96 |
+
gr.Textbox(label="Symptoms", placeholder="Enter symptoms here"),
|
97 |
+
gr.Textbox(label="Question", placeholder="Enter question here")
|
98 |
],
|
99 |
outputs="text",
|
100 |
examples=examples,
|
|
|
103 |
css=css
|
104 |
)
|
105 |
|
106 |
+
iface.launch()
|
|