Spaces:
Configuration error
Configuration error
Update app.py
Browse files
app.py
CHANGED
@@ -183,6 +183,7 @@ with gr.Blocks() as demo:
|
|
183 |
system_prompt_input = gr.Textbox(lines=5, value=default_system_prompt, label="System Prompt")
|
184 |
|
185 |
send_story_button = gr.Button("Send Story")
|
|
|
186 |
|
187 |
with gr.Row():
|
188 |
with gr.Column(scale=1):
|
@@ -192,8 +193,6 @@ with gr.Blocks() as demo:
|
|
192 |
with gr.Column(scale=2):
|
193 |
chatbot_output = gr.Chatbot(label="Chat History")
|
194 |
|
195 |
-
story_display = gr.Textbox(label="Selected Story", lines=10, interactive=False)
|
196 |
-
|
197 |
with gr.Row():
|
198 |
with gr.Column(scale=1):
|
199 |
score_input = gr.Slider(minimum=0, maximum=5, step=1, label="Score")
|
|
|
183 |
system_prompt_input = gr.Textbox(lines=5, value=default_system_prompt, label="System Prompt")
|
184 |
|
185 |
send_story_button = gr.Button("Send Story")
|
186 |
+
story_display = gr.Textbox(label="Selected Story", lines=10, interactive=False)
|
187 |
|
188 |
with gr.Row():
|
189 |
with gr.Column(scale=1):
|
|
|
193 |
with gr.Column(scale=2):
|
194 |
chatbot_output = gr.Chatbot(label="Chat History")
|
195 |
|
|
|
|
|
196 |
with gr.Row():
|
197 |
with gr.Column(scale=1):
|
198 |
score_input = gr.Slider(minimum=0, maximum=5, step=1, label="Score")
|