Update app.py
Browse files
app.py
CHANGED
|
@@ -287,8 +287,11 @@ with gr.Blocks(title="Enhanced RAG Chatbot") as demo:
|
|
| 287 |
textbox=gr.Textbox(
|
| 288 |
label="Ask a question",
|
| 289 |
placeholder="Type your question here...",
|
| 290 |
-
lines=2
|
| 291 |
-
|
|
|
|
|
|
|
|
|
|
| 292 |
)
|
| 293 |
|
| 294 |
# Process files
|
|
|
|
| 287 |
textbox=gr.Textbox(
|
| 288 |
label="Ask a question",
|
| 289 |
placeholder="Type your question here...",
|
| 290 |
+
lines=2,
|
| 291 |
+
show_label=False
|
| 292 |
+
),
|
| 293 |
+
submit_btn="Send",
|
| 294 |
+
clear_btn="Clear"
|
| 295 |
)
|
| 296 |
|
| 297 |
# Process files
|