Skip to main content

systemprompt_api/services/gateway/
mod.rs

1pub mod audit;
2pub mod captures;
3pub mod parse;
4pub mod policy;
5pub mod pricing;
6pub mod protocol;
7pub mod quota;
8pub mod registry;
9pub mod safety;
10pub mod service;
11pub mod stream_tap;
12
13pub use audit::{GatewayAudit, GatewayRequestContext};
14pub use captures::{CapturedToolUse, CapturedUsage};
15pub use protocol::{
16    CanonicalEvent, CanonicalRequest, CanonicalResponse, InboundAdapter, OutboundAdapter,
17    OutboundAdapterRegistration, OutboundCtx, OutboundOutcome,
18};
19pub use registry::GatewayUpstreamRegistry;
20pub use service::{DispatchInputs, GatewayService, REQUEST_ID_HEADER};