Spaces:
Runtime error
Runtime error
kingabzpro
commited on
Commit
•
90244f3
1
Parent(s):
8b11cfb
Update app.py
Browse files
app.py
CHANGED
@@ -43,11 +43,11 @@ with demo:
|
|
43 |
</center>
|
44 |
"""
|
45 |
)
|
46 |
-
state = gr.Variable(
|
47 |
chatbot = gr.Chatbot()
|
48 |
text = gr.Textbox(
|
49 |
label="Talk to Morty here... (press enter to submit)",
|
50 |
-
|
51 |
max_lines=1,
|
52 |
)
|
53 |
|
|
|
43 |
</center>
|
44 |
"""
|
45 |
)
|
46 |
+
state = gr.Variable(value=[])
|
47 |
chatbot = gr.Chatbot()
|
48 |
text = gr.Textbox(
|
49 |
label="Talk to Morty here... (press enter to submit)",
|
50 |
+
value="How are you?",
|
51 |
max_lines=1,
|
52 |
)
|
53 |
|