aether-llm 0.7.8

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
//! Ensures the JSON examples embedded in config doc comments stay valid.
//! These `.md` files are rendered into the auto-generated settings reference.

use aether_doctest::assert_json_examples;
use llm::ProviderConnectionOverride;

#[test]
fn provider_connection_override_examples_parse() {
    assert_json_examples::<ProviderConnectionOverride>(
        "provider_connection_override.md",
        include_str!("../src/docs/provider_connection_override.md"),
    );
}