Spaces:
Sleeping
Sleeping
renamed
Browse files
app.py
CHANGED
|
@@ -120,4 +120,11 @@ def respond(message,history):
|
|
| 120 |
chatbot = gr.ChatInterface(respond, type='messages')
|
| 121 |
#defining my chatbot so user can interact, see their conversation and send new messages
|
| 122 |
|
| 123 |
-
chatbot.launch()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 120 |
chatbot = gr.ChatInterface(respond, type='messages')
|
| 121 |
#defining my chatbot so user can interact, see their conversation and send new messages
|
| 122 |
|
| 123 |
+
chatbot.launch()
|
| 124 |
+
|
| 125 |
+
print("Hello World")
|
| 126 |
+
chatbot = gr.ChatInterface(
|
| 127 |
+
respond,
|
| 128 |
+
title="Skin Chatbot!",
|
| 129 |
+
type="messages"
|
| 130 |
+
)
|