aether-llm 0.8.2

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")]

#[cfg(test)]
mod fake_http;
mod fake_llm;
mod llm_response;
mod usage;

#[cfg(test)]
pub(crate) use fake_http::FakeHttpService;
pub use fake_llm::*;
pub use llm_response::*;
pub use usage::*;