Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -525,11 +525,15 @@ with gr.Blocks(css=STYLES) as demo:
|
|
525 |
with gr.Row():
|
526 |
with gr.Column(scale=5):
|
527 |
editor = gr.Textbox(
|
528 |
-
placeholder="Write your own story in this Textbox. Here are some guides for you. \n"
|
529 |
"1. If you don't know where to get started, go to the Chatting tab on the right pane. "
|
530 |
"You can discuss with AI about whatever you have in your mind. The first thing you would do "
|
531 |
"is settling down the Title of the story that you are going to write. \n"
|
532 |
-
"2. If you settle down the Title, click generate text on Control tab of the right pane. "
|
|
|
|
|
|
|
|
|
533 |
lines=32, max_lines=32,
|
534 |
elem_classes=['no-label', 'small-big-textarea']
|
535 |
)
|
|
|
525 |
with gr.Row():
|
526 |
with gr.Column(scale=5):
|
527 |
editor = gr.Textbox(
|
528 |
+
placeholder="Write your own story in this Textbox. Here are some guides for you. \n\n"
|
529 |
"1. If you don't know where to get started, go to the Chatting tab on the right pane. "
|
530 |
"You can discuss with AI about whatever you have in your mind. The first thing you would do "
|
531 |
"is settling down the Title of the story that you are going to write. \n"
|
532 |
+
"2. If you settle down the Title, click generate text on Control tab of the right pane. "
|
533 |
+
"Or just write the first short paragraph and click generate text button. Then, AI will suggest "
|
534 |
+
"the next paragraph for you. "
|
535 |
+
"3. Whenever clicking Generate alternative button, it will suggest the next paragraph to add. "
|
536 |
+
"It will suggest up to 3 alternatives, so choose one that you like.",
|
537 |
lines=32, max_lines=32,
|
538 |
elem_classes=['no-label', 'small-big-textarea']
|
539 |
)
|