llmproxy 0.2.2

A simple HTTP proxy server for llm api requests
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! # llmproxy Library
//!
//! This library contains the core logic for the llmproxy server and client.

pub mod client;
pub mod handlers;
pub mod load_balancer;
pub mod metrics;
pub mod models;
pub mod proxy;
pub mod server;
pub mod state;