docs.rs failed to build wesichain-qdrant-0.3.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
wesichain-qdrant
Qdrant vector store integration for Wesichain.
Features
QdrantVectorStoreimplementation ofwesichain_core::VectorStore- Builder API with optional API key and cloud URL warning
- Add/search/delete operations with typed error mapping
- Metadata filter translation (
Eq,In,Range,All,Any) - Contract tests and migration parity test harness
Quick Start
use VectorStore;
use QdrantVectorStore;
let store = builder
.base_url
.collection
.build?;
let results = store.search.await?;
println!;
See examples/rag_integration.rs for an end-to-end migration-oriented flow.