pub mod chat; pub mod rerank; pub mod embeddings; pub mod labeler; pub mod calibration; pub mod vllm; pub use chat::{ChatClient, Completion, Usage}; pub use rerank::RerankClient; pub use embeddings::EmbeddingsClient; pub use labeler::{EvidenceLabel, LabelerConfig, make_label_prompt, parse_label_response, fits_context_budget}; pub use calibration::{CalibrationResults, CalibrationSample, stratified_sample}; pub use vllm::{VllmConfig, VllmCompletionRequest, ChatMessage, VllmCompletionResponse};