Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -69,30 +69,31 @@ def ndone_story(original_story, next_story_output):
|
|
69 |
return original_story + next_story_output
|
70 |
|
71 |
with gr.Blocks(css=css) as demo:
|
72 |
-
with gr.
|
73 |
-
with gr.
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
|
|
82 |
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
|
97 |
generate_button.click(generate_story, inputs=[prompt, style], outputs=[output_story], concurrency_limit=250)
|
98 |
edit_button.click(edit_story, inputs=[output_story, edited_prompt], outputs=[edited_story], concurrency_limit=250)
|
|
|
69 |
return original_story + next_story_output
|
70 |
|
71 |
with gr.Blocks(css=css) as demo:
|
72 |
+
with gr.Row():
|
73 |
+
with gr.Column():
|
74 |
+
with gr.Row():
|
75 |
+
style_choices = ["Приключенческая", "Научно-фантастическая", "Романтическая", "Комедийная", "Трагическая", "Введите свой стиль:"]
|
76 |
+
style = gr.Dropdown(choices=style_choices, label="Выберите стиль истории", value="Приключенческая")
|
77 |
+
with gr.Row():
|
78 |
+
prompt = gr.Textbox(label="Введите запрос для истории", placeholder="Например: История о путешествии в космос", lines=5)
|
79 |
+
with gr.Row():
|
80 |
+
generate_button = gr.Button("Сгенерировать историю", variant='primary')
|
81 |
+
with gr.Row():
|
82 |
+
output_story = gr.Textbox(label="История", lines=10)
|
83 |
|
84 |
+
with gr.Column():
|
85 |
+
with gr.Accordion("Действия", open=True):
|
86 |
+
with gr.Tab("Редактирование"):
|
87 |
+
edited_prompt = gr.Textbox(label="Введите изменения для истории", placeholder="Например: Сделай историю более захватывающей", lines=5)
|
88 |
+
edit_button = gr.Button("Отредактировать", variant='primary')
|
89 |
+
edited_story = gr.Textbox(label="Отредактированная история", lines=10)
|
90 |
+
edone_button = gr.Button("Принять")
|
91 |
|
92 |
+
with gr.Tab("Продление"):
|
93 |
+
next_prompt = gr.Textbox(label="Введите изменения для продления истории (Необязательно)", placeholder="Продолжи, но чтобы было...", lines=5)
|
94 |
+
next_button = gr.Button("Продлить", variant='primary')
|
95 |
+
next_story_output = gr.Textbox(label="Продолжение истории", lines=10)
|
96 |
+
ndone_button = gr.Button("Принять")
|
97 |
|
98 |
generate_button.click(generate_story, inputs=[prompt, style], outputs=[output_story], concurrency_limit=250)
|
99 |
edit_button.click(edit_story, inputs=[output_story, edited_prompt], outputs=[edited_story], concurrency_limit=250)
|