Skip to main content

elizaos_plugin_trajectory_logger/
lib.rs

1//! Trajectory logging utilities for elizaOS agents (Rust).
2//!
3//! Provides:
4//! - In-memory trajectory logger service
5//! - ART / GRPO formatting helpers
6//! - Heuristic reward scoring helpers
7
8#![warn(missing_docs)]
9#![deny(unsafe_code)]
10
11/// ART formatting helpers.
12pub mod art_format;
13/// Export helpers (JSONL / grouped JSON).
14pub mod export;
15/// Heuristic reward scoring.
16pub mod reward_service;
17/// In-memory trajectory collector.
18pub mod service;
19/// Shared types.
20pub mod types;
21
22pub use art_format::*;
23pub use export::*;
24pub use reward_service::*;
25pub use service::*;
26pub use types::*;