Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1113,6 +1113,7 @@ with gr.Blocks(title="Intelligent Agent with Media Processing") as demo:
|
|
1113 |
gr.Markdown("### Fetch Questions from API")
|
1114 |
fetch_btn = gr.Button("Fetch Questions", variant="primary")
|
1115 |
fetch_status = gr.Textbox(label="Fetch Status", lines=2, interactive=False)
|
|
|
1116 |
|
1117 |
fetch_btn.click(
|
1118 |
fn=fetch_questions,
|
|
|
1113 |
gr.Markdown("### Fetch Questions from API")
|
1114 |
fetch_btn = gr.Button("Fetch Questions", variant="primary")
|
1115 |
fetch_status = gr.Textbox(label="Fetch Status", lines=2, interactive=False)
|
1116 |
+
questions_table = gr.DataFrame(label="Available Questions", wrap=True)
|
1117 |
|
1118 |
fetch_btn.click(
|
1119 |
fn=fetch_questions,
|