update default model to llama3.2 (#6959)

This commit is contained in:
Jeffrey Morgan 2024-09-25 11:11:22 -07:00 committed by GitHub
parent e9e9bdb8d9
commit 55ea963c9e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
29 changed files with 102 additions and 100 deletions

View file

@ -51,7 +51,7 @@ while True:
template=template,
)
llm = Ollama(model="llama3.1", callback_manager=CallbackManager([StreamingStdOutCallbackHandler()]))
llm = Ollama(model="llama3.2", callback_manager=CallbackManager([StreamingStdOutCallbackHandler()]))
qa_chain = RetrievalQA.from_chain_type(
llm,
retriever=vectorstore.as_retriever(),