pub struct VecInsert {
pub chunk_id: String,
pub embedding: Vec<f32>,
}raw VecInsert is the managed vector projection’s internal wire format. Callers should configure embedding + configure_vec_kind and write nodes/chunks normally; the projection actor will produce vec rows automatically. This type will remain public for a transition window but may become crate-private in a future release.
Expand description
A vector embedding to attach to an existing chunk.
The chunk_id must reference a chunk already present in the database or
co-submitted in the same WriteRequest. The embedding is stored in the
vec_nodes_active virtual table when the sqlite-vec feature is enabled;
without the feature the insert is silently skipped.
Fields§
§chunk_id: Stringraw VecInsert is the managed vector projection’s internal wire format. Callers should configure embedding + configure_vec_kind and write nodes/chunks normally; the projection actor will produce vec rows automatically. This type will remain public for a transition window but may become crate-private in a future release.
embedding: Vec<f32>raw VecInsert is the managed vector projection’s internal wire format. Callers should configure embedding + configure_vec_kind and write nodes/chunks normally; the projection actor will produce vec rows automatically. This type will remain public for a transition window but may become crate-private in a future release.