Spaces:
Runtime error
Runtime error
Logan Zoellner
commited on
Commit
·
99260a9
1
Parent(s):
0f5b6fb
i am dumb
Browse files
app.py
CHANGED
@@ -81,7 +81,7 @@ with demo:
|
|
81 |
)
|
82 |
|
83 |
with gr.Row():
|
84 |
-
|
85 |
|
86 |
with gr.Row():
|
87 |
input_command = gr.Textbox(label="input",placeholder="look around")
|
@@ -93,7 +93,7 @@ with demo:
|
|
93 |
|
94 |
|
95 |
|
96 |
-
b0.click(continue_story,inputs=[input_command],outputs=[
|
97 |
#examples=examples
|
98 |
|
99 |
demo.launch(enable_queue=True, debug=True)
|
|
|
81 |
)
|
82 |
|
83 |
with gr.Row():
|
84 |
+
output_story = gr.Textbox(value=story,label="story",lines=7)
|
85 |
|
86 |
with gr.Row():
|
87 |
input_command = gr.Textbox(label="input",placeholder="look around")
|
|
|
93 |
|
94 |
|
95 |
|
96 |
+
b0.click(continue_story,inputs=[input_command],outputs=[output_story])
|
97 |
#examples=examples
|
98 |
|
99 |
demo.launch(enable_queue=True, debug=True)
|