arjunanand13 commited on
Commit
2ca5b2d
·
verified ·
1 Parent(s): c38d228

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ def vanilla_chatbot(message, history):
9
  conversation = Conversation(text=message, past_user_inputs=message_list,
10
  generated_responses=response_list)
11
  bot = chatbot(conversation.messages[0]['content']) # working code
12
- print(bot)
13
  return bot[-1]['generated_text']
14
 
15
  demo_chatbot = gr.ChatInterface(vanilla_chatbot, title="Mashdemy Chatbot", description="Enter text to start chatting.")
 
9
  conversation = Conversation(text=message, past_user_inputs=message_list,
10
  generated_responses=response_list)
11
  bot = chatbot(conversation.messages[0]['content']) # working code
12
+ # print(bot)
13
  return bot[-1]['generated_text']
14
 
15
  demo_chatbot = gr.ChatInterface(vanilla_chatbot, title="Mashdemy Chatbot", description="Enter text to start chatting.")