anyllm_proxy 0.9.1

HTTP proxy translating Anthropic Messages API to OpenAI Chat Completions
/// Admin server: localhost-only config management, request logging, WebSocket live updates.
pub mod admin;
/// Backend HTTP clients for OpenAI, Vertex, Gemini, and Anthropic passthrough.
pub mod backend;
/// Async batch job submission and management (US3).
pub mod batch;
/// Response caching with in-memory (moka) and optional Redis tier (US1).
pub mod cache;
/// Webhook callback support for request completion notifications.
pub mod callbacks;
/// Environment-based configuration, TLS client cert setup, URL validation.
pub mod config;
/// Per-request cost tracking and model pricing (US4).
pub mod cost;
/// Pure env-file parser (no I/O, no set_var). Used by startup bootstrap and admin import endpoint.
pub mod env_parser;
/// Backend fallback chains for transparent failover (US2).
pub mod fallback;
/// Named integration registry (Langfuse, etc.).
pub mod integrations;
/// Request count, success/error tracking, exposed via GET /metrics.
pub mod metrics;
/// Optional OpenTelemetry OTLP trace export (requires `otel` feature).
#[cfg(feature = "otel")]
pub mod otel;
/// Distributed rate limiting via Redis sorted sets (requires `redis` feature).
pub mod ratelimit;
/// Axum HTTP server: routes, middleware (auth, request ID, size/concurrency limits), SSE streaming.
pub mod server;
/// Optional built-in server-side tools and registry.
pub mod tools;