aether-llm 0.1.9

Multi-provider LLM abstraction layer for the Aether AI agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../docs/providers.md")]

pub mod anthropic;
#[cfg(feature = "bedrock")]
pub mod bedrock;
#[cfg(feature = "codex")]
pub mod codex;
pub mod gemini;
pub mod local;
pub mod openai;
pub mod openai_compatible;
pub mod openrouter;
pub(crate) mod tool_call_collector;