Update app.py
Browse files
app.py
CHANGED
|
@@ -414,6 +414,8 @@ with gr.Blocks(title="🤖 Dox the Data Professional's Guide 🤖"#,
|
|
| 414 |
#css=demo_css,
|
| 415 |
#fill_width=True
|
| 416 |
) as demo:
|
|
|
|
|
|
|
| 417 |
with gr.Column(elem_classes=["main-container"]):
|
| 418 |
|
| 419 |
# -----------------------------
|
|
|
|
| 414 |
#css=demo_css,
|
| 415 |
#fill_width=True
|
| 416 |
) as demo:
|
| 417 |
+
def run_example(question_text, chat_history):
|
| 418 |
+
return chat_ui(question_text, chat_history)
|
| 419 |
with gr.Column(elem_classes=["main-container"]):
|
| 420 |
|
| 421 |
# -----------------------------
|