Tri4 commited on
Commit
54dfd1e
·
verified ·
1 Parent(s): 3e99b95

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -91,8 +91,8 @@ def get_vectorstore(text_chunks : list) -> FAISS:
91
 
92
  def get_conversation_chain(vectorstore:FAISS) -> ConversationalRetrievalChain:
93
  llm = HuggingFaceHub(
94
- repo_id="mistralai/Mixtral-8x7B-Instruct-v0.1",
95
- #repo_id="TheBloke/Mixtral-8x7B-Instruct-v0.1-GGUF"
96
  model_kwargs={"temperature": 0.5, "max_length": 1048},
97
  )
98
 
 
91
 
92
  def get_conversation_chain(vectorstore:FAISS) -> ConversationalRetrievalChain:
93
  llm = HuggingFaceHub(
94
+ #repo_id="mistralai/Mixtral-8x7B-Instruct-v0.1",
95
+ repo_id="TheBloke/Mixtral-8x7B-Instruct-v0.1-GGUF"
96
  model_kwargs={"temperature": 0.5, "max_length": 1048},
97
  )
98