Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -524,7 +524,15 @@ with gr.Blocks(css=STYLES) as demo:
|
|
524 |
|
525 |
with gr.Row():
|
526 |
with gr.Column(scale=5):
|
527 |
-
editor = gr.Textbox(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
528 |
word_counter = gr.Markdown("0 words", elem_classes=['right'])
|
529 |
|
530 |
with gr.Column(scale=3):
|
|
|
524 |
|
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 |
+
)
|
536 |
word_counter = gr.Markdown("0 words", elem_classes=['right'])
|
537 |
|
538 |
with gr.Column(scale=3):
|