Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -10,6 +10,5 @@ def vanilla_chatbot(message, history):
|
|
| 10 |
bot = chatbot(conversation.messages[0]['content']) # working code
|
| 11 |
return bot[-1]['generated_text']
|
| 12 |
|
| 13 |
-
demo_chatbot = gr.ChatInterface(vanilla_chatbot, title="Mashdemy Chatbot", description="Enter text to start
|
| 14 |
-
chatting.")
|
| 15 |
demo_chatbot.launch(share = True)
|
|
|
|
| 10 |
bot = chatbot(conversation.messages[0]['content']) # working code
|
| 11 |
return bot[-1]['generated_text']
|
| 12 |
|
| 13 |
+
demo_chatbot = gr.ChatInterface(vanilla_chatbot, title="Mashdemy Chatbot", description="Enter text to start chatting.")
|
|
|
|
| 14 |
demo_chatbot.launch(share = True)
|