fix(model): update to the test model
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ from transformers import pipeline
|
|
3 |
|
4 |
|
5 |
# Load the conversational model from Hugging Face
|
6 |
-
chatbot = pipeline('conversational', model='
|
7 |
|
8 |
# Initialize session state for storing the conversation
|
9 |
if 'conversation' not in st.session_state:
|
|
|
3 |
|
4 |
|
5 |
# Load the conversational model from Hugging Face
|
6 |
+
chatbot = pipeline('conversational', model='microsoft/DialoGPT-medium')
|
7 |
|
8 |
# Initialize session state for storing the conversation
|
9 |
if 'conversation' not in st.session_state:
|