Update app.py
Browse files
app.py
CHANGED
@@ -114,7 +114,7 @@ with gr.Blocks() as demo:
|
|
114 |
|
115 |
with gr.Row():
|
116 |
input_text = gr.Textbox(
|
117 |
-
label="
|
118 |
autoscroll=False,
|
119 |
lines=15,
|
120 |
max_lines=15,
|
@@ -130,6 +130,13 @@ with gr.Blocks() as demo:
|
|
130 |
show_copy_button=True,
|
131 |
)
|
132 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
with gr.Row():
|
134 |
summarize_btn = gr.Button("Summarize")
|
135 |
summarize_btn.click(
|
|
|
114 |
|
115 |
with gr.Row():
|
116 |
input_text = gr.Textbox(
|
117 |
+
label="Clinical Report",
|
118 |
autoscroll=False,
|
119 |
lines=15,
|
120 |
max_lines=15,
|
|
|
130 |
show_copy_button=True,
|
131 |
)
|
132 |
|
133 |
+
with gr.Row():
|
134 |
+
gr.CheckboxGroup(
|
135 |
+
label="Countries",
|
136 |
+
info="Where are they from?",
|
137 |
+
choices=["USA", "Japan", "Pakistan"]
|
138 |
+
)
|
139 |
+
|
140 |
with gr.Row():
|
141 |
summarize_btn = gr.Button("Summarize")
|
142 |
summarize_btn.click(
|