anyllm_proxy 0.9.0

HTTP proxy translating Anthropic Messages API to OpenAI Chat Completions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Token-based authentication for admin endpoints.
pub mod auth;
/// SQLite persistence for request logs and config overrides.
pub mod db;
/// Background health-checker: probes backends every 30 seconds.
pub mod health_check;
/// Virtual API key generation, hashing, and rate limit state.
pub mod keys;
/// Admin HTTP router: config management, request log queries, metrics.
pub mod routes;
/// Per-key spend queries for cost tracking.
pub mod spend;
/// Shared mutable state between proxy handlers and admin server.
pub mod state;
/// WebSocket handler for live admin event streaming.
pub(crate) mod ws;