Spaces:
Sleeping
Sleeping
Commit
·
da7d4c1
1
Parent(s):
f4bb0b5
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,7 @@
|
|
|
|
1 |
import gradio as gr
|
2 |
-
|
|
|
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):
|