Spaces:
Running
Running
fix: polish markdown component
Browse files
app.py
CHANGED
@@ -50,7 +50,8 @@ with gr.Blocks() as demo:
|
|
50 |
ecg_viewer = gr.Image(interactive=False, label="The selected ecg is")
|
51 |
|
52 |
with gr.Row():
|
53 |
-
|
|
|
54 |
gr_df.select(fn=get_ecg_id_from_dataframe, inputs=gr_df, outputs=ecg_id_output)
|
55 |
ecg_id_output.change(
|
56 |
fn=get_ecg_image_from_dataframe, inputs=ecg_id_output, outputs=ecg_viewer
|
|
|
50 |
ecg_viewer = gr.Image(interactive=False, label="The selected ecg is")
|
51 |
|
52 |
with gr.Row():
|
53 |
+
gr.Textbox("Alfred said that")
|
54 |
+
alfred_result = gr.Markdown(value="", min_height=300, container=True)
|
55 |
gr_df.select(fn=get_ecg_id_from_dataframe, inputs=gr_df, outputs=ecg_id_output)
|
56 |
ecg_id_output.change(
|
57 |
fn=get_ecg_image_from_dataframe, inputs=ecg_id_output, outputs=ecg_viewer
|