I'm trying to implement Hybrid Search with Qdrant and I've successfully set up my collection. Then in my code I set up the vectorstore to have hybrid = true I'm then building the nodes manually and add them to the vectorstore then persist:
Ok we've just tried to execute this and I get the following error: INFO:indexer_llamaindex_v3_qdrant:HTML to Qdrant Indexer failed with exception: Unexpected Response: 400 (Bad Request) Raw response content: b'{"status":{"error":"Wrong input: Not existing vector name error: "},"time":0.053041753}'
Here's the full text embedding code: nodes = []
for j, chunk in enumerate(text_chunks):
node = TextNode(text=chunk, metadata=metadata)
node.embedding = embed_model.get_text_embedding(node.get_content(metadata_mode=MetadataMode.ALL))
nodes.append(node)
vector_store.add(nodes)