Hi guys, i have a quick question:
I created an script to get data from qdrant:
service_context = ServiceContext.from_defaults()
vector_store = QdrantVectorStore(client=client, collection_name="pdfs")
storage_context = StorageContext.from_defaults(vector_store=vector_store)
index = VectorStoreIndex.from_documents(
documents=[], storage_context=storage_context, service_context=service_context
)
And then i query:
query_engine = index.as_query_engine(
similarity_top_k=similarity_top_k,
response_mode=response_mode
)
response = query_engine.query(q)
But i would like some times make general question about all the context.. but looks like in the background just some similar data is fetched from qdrant... are there any way about use everything?