Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -675,12 +675,9 @@ with gr.Blocks(theme=gr.themes.Soft(), css=custom_css, fill_height=True) as demo
|
|
| 675 |
title=None,
|
| 676 |
description=None,
|
| 677 |
textbox=gr.Textbox(
|
| 678 |
-
label="Message",
|
| 679 |
placeholder="Ask anything... (RAG will be applied if enabled)",
|
| 680 |
-
|
| 681 |
-
|
| 682 |
-
autofocus=True,
|
| 683 |
-
show_label=False
|
| 684 |
),
|
| 685 |
chatbot=gr.Chatbot(
|
| 686 |
height=550,
|
|
@@ -688,7 +685,7 @@ with gr.Blocks(theme=gr.themes.Soft(), css=custom_css, fill_height=True) as demo
|
|
| 688 |
render_markdown=True,
|
| 689 |
type="messages"
|
| 690 |
),
|
| 691 |
-
submit_btn=
|
| 692 |
stop_btn="Stop",
|
| 693 |
multimodal=False
|
| 694 |
)
|
|
|
|
| 675 |
title=None,
|
| 676 |
description=None,
|
| 677 |
textbox=gr.Textbox(
|
|
|
|
| 678 |
placeholder="Ask anything... (RAG will be applied if enabled)",
|
| 679 |
+
container=False,
|
| 680 |
+
scale=7
|
|
|
|
|
|
|
| 681 |
),
|
| 682 |
chatbot=gr.Chatbot(
|
| 683 |
height=550,
|
|
|
|
| 685 |
render_markdown=True,
|
| 686 |
type="messages"
|
| 687 |
),
|
| 688 |
+
submit_btn="Send",
|
| 689 |
stop_btn="Stop",
|
| 690 |
multimodal=False
|
| 691 |
)
|