Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,9 +1,8 @@
|
|
| 1 |
-
from transformers import pipeline
|
| 2 |
import gradio as gr
|
| 3 |
|
| 4 |
chatbot=pipeline(model="facebook/blenderbot-400M-distill")
|
| 5 |
-
|
| 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)
|