Skip to main content

cloakpipe_proxy/
lib.rs

1//! CloakPipe Proxy — OpenAI-compatible HTTP proxy with privacy middleware.
2//!
3//! Intercepts requests to LLM APIs, detects and pseudonymizes sensitive
4//! entities in prompts, forwards the sanitized request, then rehydrates
5//! the response before returning it to the caller.
6
7pub mod server;
8pub mod handlers;
9pub mod state;
10pub mod streaming;