LEWOPO commited on
Commit
0fc6538
1 Parent(s): f0608fd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -1,9 +1,8 @@
1
- from transformers import pipeline ,Conversation
2
  import gradio as gr
3
 
4
  chatbot=pipeline(model="facebook/blenderbot-400M-distill")
5
- message_list = []
6
- response_list = []
7
 
8
  def vanilla_chatbot(message, history):
9
  conversation = chatbot(message)
 
1
+ from transformers import pipeline
2
  import gradio as gr
3
 
4
  chatbot=pipeline(model="facebook/blenderbot-400M-distill")
5
+
 
6
 
7
  def vanilla_chatbot(message, history):
8
  conversation = chatbot(message)