Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -43,7 +43,7 @@ def respond(
|
|
43 |
# Генерируем ответ от чат-бота
|
44 |
response = client.predict(
|
45 |
message=message,
|
46 |
-
system_message=
|
47 |
max_tokens=max_tokens,
|
48 |
temperature=temperature,
|
49 |
top_p=top_p,
|
@@ -67,7 +67,7 @@ css = response.text + " .gradio-container{max-width: 700px !important} h1{text-a
|
|
67 |
|
68 |
# Создаем интерфейс с использованием gr.Blocks
|
69 |
with gr.Blocks(css=css) as demo:
|
70 |
-
gr.Markdown("#
|
71 |
|
72 |
with gr.Row():
|
73 |
with gr.Column():
|
@@ -75,7 +75,7 @@ with gr.Blocks(css=css) as demo:
|
|
75 |
message = gr.Textbox(label="Введите ваше сообщение", placeholder="Введите ваше сообщение здесь...", lines=3, container=False)
|
76 |
submit = gr.Button("Отправить")
|
77 |
|
78 |
-
with gr.Accordion("Настройки
|
79 |
with gr.Accordion(label="Помощник", open=False):
|
80 |
helper_role = gr.Radio(show_label=True, label="Выберите помощника", interactive=True, choices=role_names, value=role_names[0])
|
81 |
max_tokens = gr.Slider(minimum=100, maximum=18000, value=18000, step=1, label="Максимальное количество новых токенов")
|
|
|
43 |
# Генерируем ответ от чат-бота
|
44 |
response = client.predict(
|
45 |
message=message,
|
46 |
+
system_message=system_role,
|
47 |
max_tokens=max_tokens,
|
48 |
temperature=temperature,
|
49 |
top_p=top_p,
|
|
|
67 |
|
68 |
# Создаем интерфейс с использованием gr.Blocks
|
69 |
with gr.Blocks(css=css) as demo:
|
70 |
+
gr.Markdown("# Помощник")
|
71 |
|
72 |
with gr.Row():
|
73 |
with gr.Column():
|
|
|
75 |
message = gr.Textbox(label="Введите ваше сообщение", placeholder="Введите ваше сообщение здесь...", lines=3, container=False)
|
76 |
submit = gr.Button("Отправить")
|
77 |
|
78 |
+
with gr.Accordion("Настройки помощника", open=False):
|
79 |
with gr.Accordion(label="Помощник", open=False):
|
80 |
helper_role = gr.Radio(show_label=True, label="Выберите помощника", interactive=True, choices=role_names, value=role_names[0])
|
81 |
max_tokens = gr.Slider(minimum=100, maximum=18000, value=18000, step=1, label="Максимальное количество новых токенов")
|