Find answers from the community

Updated 2 months ago

How can I make a BasicChatEngine from

How can I make a BasicChatEngine from the retriever from an auto-retriever mentioned here https://docs.llamaindex.ai/en/stable/examples/vector_stores/pinecone_auto_retriever/
W
1 comment
The default modes of chat engines like condense, simpleChat engine contain different ways to handle the interaction with knowledge.

some contain query_engine instance a dn some contain retriever instance.

So you'll have to look and make changes that way.
for example:
chat_engine = CondensePlusContextChatEngine.from_defaults(retriever=retriever,...)
Add a reply
Sign up and join the conversation on Discord