zagens-cli 0.7.5

Zagens headless CLI + HTTP/SSE runtime sidecar (`zagens`, `zagens-runtime` binaries)
Documentation
1
2
3
4
5
6
7
8
9
10
//! Test-only mirror of the production `llm_client` module surface.
//!
//! Re-exports the production [`LlmClient`] trait from `zagens-core` so
//! `mock.rs` (included via `#[path]`) satisfies the same `#[async_trait]`
//! signatures as the binary.

pub use zagens_core::chat::{LlmClient, StreamEventBox};

#[path = "../../src/llm_client/mock.rs"]
pub mod mock;