Find answers from the community

Home
Members
Tiago Freitas
T
Tiago Freitas
Offline, last seen 3 weeks ago
Joined September 25, 2024
I saw you now have multi-modal integration with cohere. Is there a colipali implementation in llamaindex too?
7 comments
L
T
is there an index that stores a code repo (file names and contents), that basically summarizes what each file contains and for each file what its functions do etc. this is for an agent tool, may make more sense in langchain than llamaindex
3 comments
T
j
Hi, the chat example uses ConversationBufferMemory as the langchain memory. Has anyone used a vector store to save the conversation history long term?
7 comments
j
T
Hi, is there a hosted llamaindex service for businesses similar to Amazon Q / ChatGPT Business?
Or OSS project
3 comments
T
E
Hi, FYI the links to the evaluation notebooks mentioned in the docs are missing the docs folder
https://gpt-index.readthedocs.io/en/latest/how_to/evaluation/evaluation.html
1 comment
L
Hi I need to read the code for the llama agents, but conceptually why is there the need to store tasks in an index?

I was reviewing the babyagi original source-code and the langchain implementation. I am trying to understand how and why the agent context works.
both implementations embed the task execution results, but the original also stores the result itself in the metadata (never uses it though)
the query for the execution agent context is the objective.

anyone knows the rationale behind using only the results to find similar tasks as context for the current task?
18 comments
L
T
any plans to support hybrid search like langchain? its the latest trend as it improves performance when we don’t use a finetuned embedding model
7 comments
c
j
T
from all the hosted vector stores llama supports, which is the cheapest to start with?
4 comments
T
j
if using a vector store index, what is the advantage of llama over langchain vector stores_
22 comments
T
l
L
Hi all. Is llama-index structures fully compatible with Langchain? for example, can I use a document loader from llama and a vectorstore from langchain? or store from llama and embeddings from langchain?
18 comments
T
L
Hi, how do I serialize a GPTIndexChatMemory?
1 am running serverless and wanted to store and retrieve
LangChain uses pydantic that makes all the objects really easy to serialize to json, but llama uses generic python classes unfortunately
thanks
18 comments
j
T
D