Skip to main content

objectiveai_sdk/http/viewer/
mod.rs

1//! Viewer HTTP client + request wire shapes.
2//!
3//! Standalone publisher of streaming-checkpoint events (agent
4//! completion / function execution / function invention recursive /
5//! laboratory execution) to a remote viewer's HTTP server. Lives in
6//! the `http` module alongside `HttpClient`. The api server's
7//! `objectiveai_api::viewer::Client<CTXEXT>` is a thin context-aware
8//! wrapper over this client.
9
10mod client;
11mod request;
12
13pub use client::*;
14pub use request::*;