shaneperry0101 commited on
Commit
64dac4c
·
verified ·
1 Parent(s): 3b09a64

fix(model): update to the test model

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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='shaneperry0101/Health-Llama-3.2-1B')
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: