Questions tagged [qdrant]

5 questions
2
votes
2 answers

Initialise qdrant for langchain

I want to experiment with adding my existing qdrant vector database to langchain for a chatGPT project. However, I cannot seem to find a way to initialise the Qdrant object without providing docs and embeddings, which seems weird to me, as I should…
MDan
  • 295
  • 2
  • 13
1
vote
1 answer

Search points by payload's nested objects in Qdrant

I know it is possible to search a Qdrant collection by payload using filters. For instance this /scroll point query { "filter": { "must": [ { "key": "page_content", "match": { …
Davy
  • 87
  • 1
  • 11
1
vote
0 answers

Using lamma_index and qdrant, how do I query from a specific document_id from qdrant database?

Using SimpleDirectoryReader we can index content of all files in a directory. And while queriying, it searches the entire collection in qdrant to find top-K similarities.. chat_engine =…
Ravi
  • 57
  • 7
1
vote
1 answer

ValueError: could not broadcast input array from shape (1536,) into shape (2000,)

I'm trying to create a Qdrant vectorsore and add my documents. My embeddings are based on OpenAIEmbeddings the QdrantClient is local for my case the collection that I'm creating has the VectorParams as such: VectorParams(size=2000,…
Evan P
  • 1,767
  • 1
  • 20
  • 37
0
votes
0 answers

Not able to fetch files from a directory using llama-index and qdrant db

I am using qdrant db locally. My Folder is located on /home/komica/git/playbookhub/api directory name data in which I have a demo.txt file. The issue is when I use to fetch this data directory by using llama-index query, I always get the error as…