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/testing.md")]

mod fake_llm;
mod llm_response;

#[cfg(feature = "oauth")]
mod fake_credential_store;

pub use fake_llm::*;
pub use llm_response::*;

#[cfg(feature = "oauth")]
pub use fake_credential_store::*;