vectorizer-protocol 3.2.0

Wire protocol types for Vectorizer (RPC + gRPC). Shared between server and SDKs.
Documentation

Wire protocol types for Vectorizer — shared between the server (umbrella vectorizer crate, soon vectorizer-server) and the Rust SDK (sdks/rust). Carries the on-the-wire shapes only; the dispatch / handler layer lives in vectorizer::protocol::rpc::server and vectorizer::grpc::server because those types depend on the storage engine, auth, and the capability registry.

  • [rpc_wire] — length-prefixed MessagePack frames (Request / Response / VectorizerValue) and the codec helpers that read / write them. Wire spec: docs/specs/VECTORIZER_RPC.md.
  • [grpc_gen] — tonic-prost-generated modules for the three gRPC schemas: vectorizer, cluster, qdrant_proto. Built by this crate's build.rs against the proto/ source tree.