Hi all, when trying to use OpenAI's 'text-embedding-3-large' embeddings with a Qdrant client, I get a "ValueError: shapes (469,3072) and (1536,) not aligned: 3072 (dim 1) != 1536 (dim 0)" error.
I think this has to do with the embedding model producing vectors of a size that Qdrant doesn't expect, but I'm not sure how to fix. I've tried setting the Qdrant client vector parameter of size to 3072 but this doesn't help -- the error becomes "ValueError: operands could not be broadcast together with shapes (469,3072) (1536,)". Any ideas would be appreciated, thanks!
client = qdrant_client.QdrantClient(location=":memory:")
client.create_collection(collection_name="collection_name",
vectors_config=VectorParams(size=3072, distance=Distance.EUCLID), #FIXME
)
vector_store = QdrantVectorStore(client=client, collection_name="collection_name")