uira-orchestration 0.1.1

Agent definitions, SDK, tool registry, and hook implementations for Uira
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Analytics and metrics collection for Uira
//!
//! This module provides:
//! - Token tracking and usage metrics
//! - Cost estimation for model usage
//! - Session metrics collection and aggregation
//! - JSONL-based event logging

pub mod cost;
pub mod metrics;
pub mod types;

pub use cost::CostEstimator;
pub use metrics::{aggregators, MetricsCollector};
pub use types::{MetricEvent, MetricQuery};