cognis 0.3.2

Cognis umbrella crate: agent builder, multi-agent orchestration, memory, middleware (rate limit, retry, PII, prompt caching), built-in tools, and re-exports of cognis-core, cognis-graph, cognis-llm, and cognis-rag.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! `Observer` implementations that bridge cognis's [`Event`] stream to
//! the surrounding ecosystem.
//!
//! V2 takes the Rust-native route: emit to the [`tracing`] crate. Any
//! `tracing-subscriber` plugin — `tracing-opentelemetry`,
//! `tracing-bunyan-formatter`, `tracing-loki`, plain stdout — picks up
//! the trace stream for free.

pub mod tracing_observer;

pub use tracing_observer::TracingObserver;