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) to a remote viewer's HTTP
5//! server. Lives in the `http` module alongside `HttpClient`.
6
7mod client;
8mod request;
9
10pub use client::*;
11pub use request::*;