Update app.py
Browse files
app.py
CHANGED
|
@@ -2,7 +2,7 @@ import streamlit as st
|
|
| 2 |
import os
|
| 3 |
from transformers import pipeline, Conversation
|
| 4 |
|
| 5 |
-
convo = pipeline("facebook/blenderbot-400M-distill")
|
| 6 |
|
| 7 |
def chatbot():
|
| 8 |
st.title("ChatBot")
|
|
|
|
| 2 |
import os
|
| 3 |
from transformers import pipeline, Conversation
|
| 4 |
|
| 5 |
+
convo = pipeline(model="facebook/blenderbot-400M-distill")
|
| 6 |
|
| 7 |
def chatbot():
|
| 8 |
st.title("ChatBot")
|