vectorizer-sdk 3.0.0

Rust SDK for Vectorizer — RPC-first (vectorizer://) with HTTP fallback
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! VectorizerRPC wire types — `Request`, `Response`, `VectorizerValue`.
//!
//! Wire spec § 2 + § 3: `docs/specs/VECTORIZER_RPC.md`.
//!
//! These types used to be hand-ported byte-for-byte from the server's
//! `vectorizer::protocol::rpc::types` and kept in sync by convention.
//! Under `phase4_split-vectorizer-workspace` sub-phase 6 the server's
//! wire types moved into the standalone `vectorizer-protocol` crate;
//! this module now re-exports them so the SDK and the server cannot
//! disagree on the wire format — they're literally the same Rust
//! types compiled from the same source.

pub use vectorizer_protocol::rpc_wire::types::{Request, Response, VectorizerValue};