open-pincery 1.0.1

Multi-agent platform for durable, event-driven AI agents
Documentation
1
2
3
4
5
6
7
8
9
//! Observability: logging format toggle (AC-17) and Prometheus metrics (AC-18).
//!
//! Logging runs unconditionally (JSON toggled by `LOG_FORMAT=json`).
//! Metrics recording requires calling `metrics::install_recorder()`; the
//! `/metrics` HTTP server is optional via `METRICS_ADDR` env var.

pub mod logging;
pub mod metrics;
pub mod server;