rullama-provider 0.12.0

LLM provider implementations (Anthropic, OpenAI Chat + Responses, Google Gemini, Ollama, Bedrock, Vertex AI, local llama.cpp) for the rullama agent framework. Speech (TTS/STT) providers live in `rullama-provider-speech`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Anthropic model listing.
//!
//! The [`AnthropicModelLister`] is defined in the parent module
//! (`anthropic/mod.rs`) alongside the client, because it shares
//! private constants (`ANTHROPIC_MODELS_URL`, `ANTHROPIC_VERSION`) and
//! the HTTP client plumbing.
//!
//! This file exists for structural consistency with other provider
//! directories that split models into their own submodule.

// Model lister is defined in mod.rs alongside the client.