cognis 0.3.0

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.
//!
//! V1 shipped bespoke LangSmith / OTel tracers. V2 takes the Rust-native
//! route: emit to the [`tracing`] crate. Then any `tracing-subscriber`
//! plugin — `tracing-opentelemetry`, `tracing-bunyan-formatter`,
//! `tracing-loki`, plain stdout — gets your trace stream for free.

pub mod tracing_observer;

pub use tracing_observer::TracingObserver;