venice-e2ee-proxy 0.1.3

OpenAI-compatible proxy for Venice.ai E2EE models
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Library surface for the Venice E2EE OpenAI-compatible proxy.
//!
//! Exposes modules for the local HTTP proxy, Venice upstream client, E2EE,
//! attestation, sessions, OpenAI-compatible formatting, and tool-call emulation.

pub mod attestation;
pub mod config;
pub mod e2ee;
pub mod http;
pub mod keys;
pub mod openai;
pub mod sessions;
pub mod tools;
pub(crate) mod util;
pub mod venice;
pub(crate) mod vllm_tool_parser;