mod.rs 330 Bytes
Newer Older
1
2
3
// Protocol definitions and validation for various LLM APIs
// This module provides a structured approach to handling different API protocols

4
5
6
7
8
9
10
11
pub mod chat;
pub mod common;
pub mod completion;
pub mod embedding;
pub mod generate;
pub mod rerank;
pub mod responses;
pub mod sampling_params;
12
pub mod validated;
13
pub mod worker_spec;