Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -55,9 +55,9 @@ with gr.Blocks() as demo:
|
|
55 |
with gr.Row():
|
56 |
output4 = gr.DataFrame(label="SNOMED and OMS Terminology")
|
57 |
|
58 |
-
button1.click(fn=MatchLOINC, inputs=name, outputs=output1)
|
59 |
-
button2.click(fn=MatchLOINCPanelsandForms, inputs=name, outputs=output2)
|
60 |
-
button3.click(fn=MatchSNOMED, inputs=name, outputs=output3)
|
61 |
-
button4.click(fn=MatchOMS, inputs=name, outputs=output4)
|
62 |
|
63 |
demo.launch(debug=True)
|
|
|
55 |
with gr.Row():
|
56 |
output4 = gr.DataFrame(label="SNOMED and OMS Terminology")
|
57 |
|
58 |
+
button1.click(fn=MatchLOINC, inputs=name, outputs=output1, api_name=MatchLOINC)
|
59 |
+
button2.click(fn=MatchLOINCPanelsandForms, inputs=name, outputs=output2, api_name=MatchPanels)
|
60 |
+
button3.click(fn=MatchSNOMED, inputs=name, outputs=output3, api_name=MatchSNOMED)
|
61 |
+
button4.click(fn=MatchOMS, inputs=name, outputs=output4, api_name=MatchOMS)
|
62 |
|
63 |
demo.launch(debug=True)
|