Update app.py
Browse files
app.py
CHANGED
@@ -331,7 +331,7 @@ def create_app():
|
|
331 |
|
332 |
# Add accordions with option explanations
|
333 |
with gr.Accordion("π Understanding Story Options", open=False):
|
334 |
-
with gr.Accordion("Genre Options", open=False):
|
335 |
gr.Markdown("""
|
336 |
**Genre** determines the type and style of your story:
|
337 |
|
@@ -345,7 +345,7 @@ def create_app():
|
|
345 |
- **Comedy**: Humorous stories meant to entertain and make readers laugh
|
346 |
""")
|
347 |
|
348 |
-
with gr.Accordion("Theme Suggestions", open=False):
|
349 |
gr.Markdown("""
|
350 |
**Theme** is the central idea or message that runs throughout your story. Some examples:
|
351 |
|
@@ -361,7 +361,7 @@ def create_app():
|
|
361 |
- **Identity**: Understanding who one truly is
|
362 |
""")
|
363 |
|
364 |
-
with gr.Accordion("Story Length Options", open=False):
|
365 |
gr.Markdown("""
|
366 |
**Story Length** determines the scope of your generated story:
|
367 |
|
@@ -370,7 +370,7 @@ def create_app():
|
|
370 |
- **Novel Chapter**: A section of what could be a longer work, focusing on just one part of a potentially larger narrative
|
371 |
""")
|
372 |
|
373 |
-
with gr.Accordion("Interface Elements", open=False):
|
374 |
gr.Markdown("""
|
375 |
**Status**: Shows feedback about your story generation process (success messages, errors, confirmations)
|
376 |
|
|
|
331 |
|
332 |
# Add accordions with option explanations
|
333 |
with gr.Accordion("π Understanding Story Options", open=False):
|
334 |
+
with gr.Accordion("β Genre Options", open=False):
|
335 |
gr.Markdown("""
|
336 |
**Genre** determines the type and style of your story:
|
337 |
|
|
|
345 |
- **Comedy**: Humorous stories meant to entertain and make readers laugh
|
346 |
""")
|
347 |
|
348 |
+
with gr.Accordion("β Theme Suggestions", open=False):
|
349 |
gr.Markdown("""
|
350 |
**Theme** is the central idea or message that runs throughout your story. Some examples:
|
351 |
|
|
|
361 |
- **Identity**: Understanding who one truly is
|
362 |
""")
|
363 |
|
364 |
+
with gr.Accordion("β Story Length Options", open=False):
|
365 |
gr.Markdown("""
|
366 |
**Story Length** determines the scope of your generated story:
|
367 |
|
|
|
370 |
- **Novel Chapter**: A section of what could be a longer work, focusing on just one part of a potentially larger narrative
|
371 |
""")
|
372 |
|
373 |
+
with gr.Accordion("β Interface Elements", open=False):
|
374 |
gr.Markdown("""
|
375 |
**Status**: Shows feedback about your story generation process (success messages, errors, confirmations)
|
376 |
|