brainwires-provider 0.11.0

LLM provider implementations (Anthropic, OpenAI Chat + Responses, Google Gemini, Ollama, Bedrock, Vertex AI, local llama.cpp) for the Brainwires Agent Framework. Speech (TTS/STT) providers live in `brainwires-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.