m96tkmok commited on
Commit
8180bda
·
verified ·
1 Parent(s): 7e3254b

Update app.py

Browse files

Update LLM Mistral-7B-Instruct-v0.3

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -53,7 +53,7 @@ if 'vectorstore' not in st.session_state:
53
 
54
  if 'llm' not in st.session_state:
55
  #st.session_state.llm = Ollama(base_url="http://localhost:11434",model="mistral",verbose=True,callback_manager=CallbackManager([StreamingStdOutCallbackHandler()]),)
56
- st.session_state.llm = HuggingFaceEndpoint(repo_id="mistralai/Mistral-Large-Instruct-2411", Temperature=0.2)
57
 
58
  # Initialize session state
59
  if 'chat_history' not in st.session_state:
 
53
 
54
  if 'llm' not in st.session_state:
55
  #st.session_state.llm = Ollama(base_url="http://localhost:11434",model="mistral",verbose=True,callback_manager=CallbackManager([StreamingStdOutCallbackHandler()]),)
56
+ st.session_state.llm = HuggingFaceEndpoint(repo_id="mistralai/Mistral-7B-Instruct-v0.3", Temperature=0.2)
57
 
58
  # Initialize session state
59
  if 'chat_history' not in st.session_state: