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
#![doc = include_str!(concat!(env!("OUT_DIR"), "/docs/openai.md"))]

pub mod mappers;
pub mod provider;
pub mod responses_provider;
pub mod streaming;

pub use provider::*;
pub use responses_provider::OpenAiProvider;
pub use streaming::*;