Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -35,8 +35,8 @@ with gr.Blocks(title=title,theme='nota-ai/theme',css="footer {visibility: hidden
|
|
35 |
with gr.Row():
|
36 |
with gr.Column(scale=3):
|
37 |
chat_submit_button = gr.Button(value="Submit ▶")
|
38 |
-
with gr.Accordion("config", open=False):
|
39 |
-
prompt = gr.Textbox(value=sys_prompt, lines=15, label="prompt")
|
40 |
url_input = gr.Textbox(placeholder="Age, medical results", lines=15, label="Input patient data")
|
41 |
with gr.Column(scale=6):
|
42 |
compliance_output = gr.Markdown("Waiting for patient data...")
|
|
|
35 |
with gr.Row():
|
36 |
with gr.Column(scale=3):
|
37 |
chat_submit_button = gr.Button(value="Submit ▶")
|
38 |
+
with gr.Accordion("config", open=False, visible=False):
|
39 |
+
prompt = gr.Textbox(value=sys_prompt, lines=15, label="prompt", visible=False)
|
40 |
url_input = gr.Textbox(placeholder="Age, medical results", lines=15, label="Input patient data")
|
41 |
with gr.Column(scale=6):
|
42 |
compliance_output = gr.Markdown("Waiting for patient data...")
|