Update app.py
Browse files
app.py
CHANGED
|
@@ -163,11 +163,11 @@ with gr.Blocks(theme=gr.themes.Soft(), css=custom_css) as interface:
|
|
| 163 |
with gr.Row():
|
| 164 |
# --- Левая колонка: Чат и Ввод ---
|
| 165 |
with gr.Column(scale=3):
|
| 166 |
-
chatbot = gr.Chatbot(height=
|
| 167 |
prompt_input = gr.Textbox(
|
| 168 |
label="Введи свой запрос:",
|
| 169 |
lines=2,
|
| 170 |
-
max_lines=
|
| 171 |
placeholder="Чё хошь, я жду...",
|
| 172 |
elem_classes="input-container"
|
| 173 |
)
|
|
|
|
| 163 |
with gr.Row():
|
| 164 |
# --- Левая колонка: Чат и Ввод ---
|
| 165 |
with gr.Column(scale=3):
|
| 166 |
+
chatbot = gr.Chatbot(height=500, label="Чат", elem_classes="input-container")
|
| 167 |
prompt_input = gr.Textbox(
|
| 168 |
label="Введи свой запрос:",
|
| 169 |
lines=2,
|
| 170 |
+
max_lines=10,
|
| 171 |
placeholder="Чё хошь, я жду...",
|
| 172 |
elem_classes="input-container"
|
| 173 |
)
|