Spaces:
Runtime error
Runtime error
Commit
·
d064c8c
1
Parent(s):
2f276a0
Update app.py
Browse files
app.py
CHANGED
@@ -9,8 +9,8 @@ def fetch_answer(question, context ):
|
|
9 |
demo = gr.Interface(
|
10 |
fn=fetch_answer,
|
11 |
#take input as real time audio and use OPENAPI whisper for S2T
|
12 |
-
inputs=[gr.Textbox(lines=2, placeholder="What is age of patient
|
13 |
-
gr.Textbox(lines=
|
14 |
outputs="text",
|
15 |
examples=[['questiontest1','context1'],['questiontest2','context2']]
|
16 |
)
|
|
|
9 |
demo = gr.Interface(
|
10 |
fn=fetch_answer,
|
11 |
#take input as real time audio and use OPENAPI whisper for S2T
|
12 |
+
inputs=[gr.Textbox(lines=2, label='Question', show_label=True, placeholder="What is age of patient ?"),
|
13 |
+
gr.Textbox(lines=10, label='Clinical Note', show_label=True, placeholder="The patient is a 71 year old male...")],
|
14 |
outputs="text",
|
15 |
examples=[['questiontest1','context1'],['questiontest2','context2']]
|
16 |
)
|