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

pub mod mappers;
pub mod oauth;
pub mod provider;
pub mod streaming;

pub const PROVIDER_ID: &str = "codex";

pub use oauth::perform_codex_oauth_flow;
pub use provider::CodexProvider;