Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -36,10 +36,10 @@ def MatchOMS(name):
|
|
36 |
with gr.Blocks() as demo:
|
37 |
name = gr.Textbox(label="Name")
|
38 |
|
39 |
-
output1 = gr.TextArea(label="Output Match LOINC", max_lines=
|
40 |
-
output2 = gr.TextArea(label="Output Match LOINC Panels and Forms", max_lines=
|
41 |
-
output3 = gr.TextArea(label="Output Match SNOMED", max_lines=
|
42 |
-
output4 = gr.TextArea(label="Output Match SNOMED", max_lines=
|
43 |
|
44 |
button1 = gr.Button("Match LOINC Clinical Terminology")
|
45 |
button1.click(fn=MatchLOINC, inputs=name, outputs=output1)
|
|
|
36 |
with gr.Blocks() as demo:
|
37 |
name = gr.Textbox(label="Name")
|
38 |
|
39 |
+
output1 = gr.TextArea(label="Output Match LOINC", max_lines=10, interactive=True, )
|
40 |
+
output2 = gr.TextArea(label="Output Match LOINC Panels and Forms", max_lines=10, interactive=True,)
|
41 |
+
output3 = gr.TextArea(label="Output Match SNOMED", max_lines=10, interactive=True,)
|
42 |
+
output4 = gr.TextArea(label="Output Match SNOMED", max_lines=10, interactive=True,)
|
43 |
|
44 |
button1 = gr.Button("Match LOINC Clinical Terminology")
|
45 |
button1.click(fn=MatchLOINC, inputs=name, outputs=output1)
|