KAHRAMAN42 commited on
Commit
da7d4c1
·
1 Parent(s): f4bb0b5

Update app.py

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