Update app.py
Browse files
app.py
CHANGED
@@ -116,7 +116,7 @@ def main(text_input="", image_input=None, unit=""):
|
|
116 |
elif image_input is not None:
|
117 |
return process_image(image_input,unit)
|
118 |
|
119 |
-
with gr.Blocks(theme='shivi/calm_seafoam', css=css, title="诊疗助手
|
120 |
with gr.Accordion(""):
|
121 |
gr.Markdown(DESCRIPTION)
|
122 |
unit = gr.Dropdown(label="🩺科室", value='中医科', elem_id="units",
|
@@ -131,7 +131,7 @@ with gr.Blocks(theme='shivi/calm_seafoam', css=css, title="诊疗助手Alpha") a
|
|
131 |
text_input = gr.Textbox(label="输入") # Create a text input box
|
132 |
with gr.Row():
|
133 |
submit_btn = gr.Button("🚀 确认") # Create a submit button
|
134 |
-
clear_btn = gr.ClearButton(output_box, value="🗑️ 清空") # Create a clear button
|
135 |
|
136 |
# Set up the event listeners
|
137 |
submit_btn.click(main, inputs=[text_input, image_input, unit], outputs=output_box)
|
|
|
116 |
elif image_input is not None:
|
117 |
return process_image(image_input,unit)
|
118 |
|
119 |
+
with gr.Blocks(theme='shivi/calm_seafoam', css=css, title="诊疗助手demo") as iface:
|
120 |
with gr.Accordion(""):
|
121 |
gr.Markdown(DESCRIPTION)
|
122 |
unit = gr.Dropdown(label="🩺科室", value='中医科', elem_id="units",
|
|
|
131 |
text_input = gr.Textbox(label="输入") # Create a text input box
|
132 |
with gr.Row():
|
133 |
submit_btn = gr.Button("🚀 确认") # Create a submit button
|
134 |
+
clear_btn = gr.ClearButton([output_box,image_input,text_input], value="🗑️ 清空") # Create a clear button
|
135 |
|
136 |
# Set up the event listeners
|
137 |
submit_btn.click(main, inputs=[text_input, image_input, unit], outputs=output_box)
|