"official/legacy/bert/run_squad_helper.py" did not exist on "c25d7711f856f56fa0503861e62bab9e06c0008a"
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;