multi-llm 1.0.0

Unified multi-provider LLM client with support for OpenAI, Anthropic, Ollama, and LMStudio
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Internal utilities for multi-llm
//!
//! This module contains internal implementation details that are not part of the public API.
//! Some types are re-exported through `lib.rs` for public use (RetryPolicy, TokenCounter*).

pub(crate) mod response_parser;
pub mod retry;
pub mod tokens;

#[cfg(feature = "events")]
pub mod events;