Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -197,14 +197,14 @@ with gr.Blocks() as demo:
|
|
197 |
btn_generate_prompts.click(
|
198 |
fn=handle_generation,
|
199 |
inputs=[desc, benefits, key_message, gender, generation, psychotype, business_stage, industry, opf],
|
200 |
-
outputs=[gr.Textbox.update(label="
|
201 |
)
|
202 |
|
203 |
# Вкладка 2: Промпты
|
204 |
with gr.TabItem("Ассистент", id=1):
|
205 |
with gr.Row():
|
206 |
with gr.Column():
|
207 |
-
non_personalized_prompt = gr.Textbox(label="
|
208 |
with gr.Column():
|
209 |
personalized_prompt = gr.Textbox(label="Задание для редактора", lines=25)
|
210 |
|
|
|
197 |
btn_generate_prompts.click(
|
198 |
fn=handle_generation,
|
199 |
inputs=[desc, benefits, key_message, gender, generation, psychotype, business_stage, industry, opf],
|
200 |
+
outputs=[gr.Textbox.update(label="Задание для копирайтера"), gr.Textbox.update(label="Задание для редактора")]
|
201 |
)
|
202 |
|
203 |
# Вкладка 2: Промпты
|
204 |
with gr.TabItem("Ассистент", id=1):
|
205 |
with gr.Row():
|
206 |
with gr.Column():
|
207 |
+
non_personalized_prompt = gr.Textbox(label="Задание для копирайтера", lines=25, interactive=False)
|
208 |
with gr.Column():
|
209 |
personalized_prompt = gr.Textbox(label="Задание для редактора", lines=25)
|
210 |
|