Spaces:
Runtime error
Runtime error
update
Browse files
app.py
CHANGED
|
@@ -16,7 +16,7 @@ def state_player(message, history):
|
|
| 16 |
history.append((message, response))
|
| 17 |
return history, history
|
| 18 |
|
| 19 |
-
text_editor = gr.Textbox()
|
| 20 |
demo = gr.Interface(
|
| 21 |
state_player,
|
| 22 |
[text_editor, "state"],
|
|
|
|
| 16 |
history.append((message, response))
|
| 17 |
return history, history
|
| 18 |
|
| 19 |
+
text_editor = gr.Textbox(lines=20, interactive=True, )
|
| 20 |
demo = gr.Interface(
|
| 21 |
state_player,
|
| 22 |
[text_editor, "state"],
|