kaizen/proxy/mod.rs
1// SPDX-License-Identifier: AGPL-3.0-or-later
2//! Local Anthropic API-compatible HTTP forwarder + `EventSource::Proxy` in SQLite. See `docs/llm-proxy.md`.
3
4mod forward;
5mod http_ext;
6mod opts;
7mod record;
8mod server;
9mod sse;
10mod state;
11mod transform;
12
13pub use opts::ProxyRunOptions;
14pub use server::run;
15pub use state::ProxyState;