Find answers from the community

Home
Members
peeranat_fup
p
peeranat_fup
Offline, last seen 3 months ago
Joined September 25, 2024
How can I create a conversation chatbot with memory in llamaindex?
1 comment
W
how to build a Conversational Retrieval Agents with memory using llamaindex?
8 comments
k
p
I have a query engine as follows
Plain Text
query_engine = RetrieverQueryEngine.from_args(
            retriever=hybrid_retriever,
            node_postprocessors=[reranker],
            service_context=service_context,
            streaming=True,
        )

how can I add memory to it?
3 comments
a
p
In Llamaindex, do we have support for Elasticsearch auto retrieval like in Chromadb: https://docs.llamaindex.ai/en/stable/examples/vector_stores/chroma_auto_retriever.html
5 comments
P
p
L
In Lamaindex, do we have something like Langchain's self-querying: https://python.langchain.com/docs/modules/data_connection/retrievers/self_query/
4 comments
t
p
L
In llamaindex, can we do keyword search in elasticsearch?
4 comments
p
L