Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ temperature = st.sidebar.slider("Temperature", 0.0, 1.0, 0.7)
|
|
18 |
|
19 |
# Load the model and tokenizer with a loading message
|
20 |
with st.spinner('Wait for model to respond..'):
|
21 |
-
model_name = "
|
22 |
model = AutoModelForSeq2SeqLM.from_pretrained(model_name)
|
23 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
24 |
|
|
|
18 |
|
19 |
# Load the model and tokenizer with a loading message
|
20 |
with st.spinner('Wait for model to respond..'):
|
21 |
+
model_name = "facebook/blenderbot-3B"
|
22 |
model = AutoModelForSeq2SeqLM.from_pretrained(model_name)
|
23 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
24 |
|