Find answers from the community

Home
Members
michal382
m
michal382
Offline, last seen 3 months ago
Joined September 25, 2024
Is there a way to use gpt-4o with OpenAIMultiModal - I've updated llama-index-llms-openai to the latest version but that doesn't seem to help
4 comments
m
L
W
m
michal382
·

Metadata

Is there a way to add new metadata keys to existing vectors in pinecone via llama-index?
2 comments
m
L
m
michal382
·

Scale

When combining the retrieval results of the bm25 retriever and a dense retriever is there a way to scale the scores from the bm25 within 0-1 so that they can be compared with cosine similarity scores from the dense retriever?
2 comments
m
L
For pinecone vector db is there another way to persist the docstore other than using .persist() without having to store it the local?
from llama_index.storage.docstore import SimpleDocumentStore docstore = SimpleDocumentStore() docstore.add_documents(documents) docstore.persist(persist_path="./docstore.json") new_docstore = SimpleDocumentStore.from_persist_path("./docstore.json")
2 comments
m
L
has anyone experienced longer running times with .acomplete compared to the synchronous .complete?
6 comments
m
L