1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright 2025, 2026 Query Farm LLC - https://query.farm
//! VGI (Vector Gateway Interface) worker SDK — Rust port.
//!
//! Builds on the `vgi-rpc` crate (wire protocol, RPC server, transports) to
//! provide the VGI function model (scalar / table / table-in-out / aggregate
//! / buffering), the catalog layer, and the worker dispatcher that the
//! DuckDB C++ VGI extension drives.
//!
//! Canonical reference for behavior: Python `~/Development/vgi-python/vgi/`.
//! Closest structural parallel: Go `~/Development/vgi-go/vgi/`.
pub use ;
pub use Worker;