Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -320,15 +320,25 @@ with gr.Blocks() as demo:
|
|
320 |
personalize_btn.click(
|
321 |
personalize_messages_with_yield,
|
322 |
inputs=[output_text_gpt4o, output_text_gigachat_pro, output_text_gigachat_lite, output_text_gigachat_plus] + selections,
|
323 |
-
outputs=[
|
324 |
-
gr.Textbox(label="Промпт для персонализации", lines=6, interactive=True),
|
325 |
-
personalized_output_text_gpt4o := gr.Textbox(label="Персонализированное сообщение GPT-4o", lines=6, interactive=True),
|
326 |
-
personalized_output_text_gigachat_pro := gr.Textbox(label="Персонализированное сообщение GigaChat-Pro", lines=6, interactive=True),
|
327 |
-
personalized_output_text_gigachat_lite := gr.Textbox(label="Персонализированное сообщение GigaChat-Lite", lines=6, interactive=True),
|
328 |
-
personalized_output_text_gigachat_plus := gr.Textbox(label="Персонализированное сообщение GigaChat-Lite+", lines=6, interactive=True)
|
329 |
-
]
|
330 |
)
|
331 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
332 |
# Использование сохраненных переменных в следующем блоке
|
333 |
with gr.Row():
|
334 |
check_errors_btn = gr.Button("3. Проверить текст (нажимать только после кнопки 2)", elem_id="check_errors_button")
|
|
|
320 |
personalize_btn.click(
|
321 |
personalize_messages_with_yield,
|
322 |
inputs=[output_text_gpt4o, output_text_gigachat_pro, output_text_gigachat_lite, output_text_gigachat_plus] + selections,
|
323 |
+
outputs=[]
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
)
|
325 |
|
326 |
+
with gr.Column():
|
327 |
+
personalized_output_text_gpt4o = gr.Textbox(label="Персонализированное сообщение GPT-4o", lines=6, interactive=True)
|
328 |
+
thumb_up_gpt4o = gr.Button("👍")
|
329 |
+
|
330 |
+
with gr.Column():
|
331 |
+
personalized_output_text_gigachat_pro = gr.Textbox(label="Персонализированное сообщение GigaChat-Pro", lines=6, interactive=True)
|
332 |
+
thumb_up_gigachat_pro = gr.Button("👍")
|
333 |
+
|
334 |
+
with gr.Column():
|
335 |
+
personalized_output_text_gigachat_lite = gr.Textbox(label="Персонализированное сообщение GigaChat-Lite", lines=6, interactive=True)
|
336 |
+
thumb_up_gigachat_lite = gr.Button("👍")
|
337 |
+
|
338 |
+
with gr.Column():
|
339 |
+
personalized_output_text_gigachat_plus = gr.Textbox(label="Персонализированное сообщение GigaChat-Lite+", lines=6, interactive=True)
|
340 |
+
thumb_up_gigachat_plus = gr.Button("👍")
|
341 |
+
|
342 |
# Использование сохраненных переменных в следующем блоке
|
343 |
with gr.Row():
|
344 |
check_errors_btn = gr.Button("3. Проверить текст (нажимать только после кнопки 2)", elem_id="check_errors_button")
|