Find answers from the community

n
niku
Offline, last seen 3 months ago
Joined September 25, 2024
just very general, but what are actual con's of using llama index instead of using vector db's directly, like qdrant, milvus or whatever? I had the feeling that it's easier to not use llama index, given some missing support for example with filtering...
7 comments
L
n
W
is a baseindex threadsafe? like is it save to do
Plain Text
from llama_index.core import StorageContext, load_index_from_storage
storage_context = StorageContext.from_defaults(persist_dir=pdir)
index = load_index_from_storage(storage_context)

and then create multiple query engines in various threads?
2 comments
n
L