oxillama-server 0.1.3

OpenAI-compatible HTTP API server for OxiLLaMa
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! API route handlers for the OpenAI-compatible server.

pub mod chat;
pub mod completions;
pub mod embeddings;
pub mod files;
pub mod health;
pub mod metrics;
pub mod models;
pub mod responses;
pub mod tool_dispatcher;
pub mod tools;