We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
qdrant-client 1.11.1 qdrant 1.11.3
from qdrant_client import QdrantClient, models cl = QdrantClient(prefer_grpc=True) if cl.collection_exists("cn"): cl.delete_collection("cn") cl.create_collection( "cn", vectors_config=models.VectorParams(size=2, distance=models.Distance.COSINE) ) cl.create_payload_index( "cn", "docs", models.IntegerIndexParams(type=models.IntegerIndexType.INTEGER, lookup=True, range=False), ) cl = QdrantClient() print(cl.get_collection("cn").payload_schema)
The text was updated successfully, but these errors were encountered:
#773
Sorry, something went wrong.
No branches or pull requests
qdrant-client 1.11.1
qdrant 1.11.3
The text was updated successfully, but these errors were encountered: