Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -48,6 +48,11 @@ with gr.Blocks() as demo:
|
|
48 |
msg = gr.Textbox()
|
49 |
clear = gr.Button("Clear")
|
50 |
|
|
|
|
|
|
|
|
|
|
|
51 |
msg.submit(user, [msg, chatbot], [msg, chatbot], queue=False).then(
|
52 |
bot, chatbot, chatbot
|
53 |
)
|
@@ -56,10 +61,7 @@ with gr.Blocks() as demo:
|
|
56 |
demo.launch()
|
57 |
|
58 |
iface = gr.Interface(
|
59 |
-
|
60 |
-
description=description,
|
61 |
-
examples=examples,
|
62 |
-
theme="london"
|
63 |
)
|
64 |
|
65 |
iface.launch()
|
|
|
48 |
msg = gr.Textbox()
|
49 |
clear = gr.Button("Clear")
|
50 |
|
51 |
+
title=title
|
52 |
+
description=description
|
53 |
+
examples=examples
|
54 |
+
theme="london"
|
55 |
+
|
56 |
msg.submit(user, [msg, chatbot], [msg, chatbot], queue=False).then(
|
57 |
bot, chatbot, chatbot
|
58 |
)
|
|
|
61 |
demo.launch()
|
62 |
|
63 |
iface = gr.Interface(
|
64 |
+
|
|
|
|
|
|
|
65 |
)
|
66 |
|
67 |
iface.launch()
|