union_square 0.2.0

A proxy/wire-tap service for making LLM calls and recording everything that happens in a session for later analysis and test-case extraction
Documentation
//! Domain types and business logic for Union Square
//!
//! This module contains the core domain types that represent the business
//! concepts of Union Square, following type-driven development principles.

pub mod commands;
pub mod config_types;
pub mod events;
pub mod llm;
pub mod metrics;
pub mod network_types;
pub mod session;
pub mod test_case;
pub mod test_data;
pub mod types;
pub mod user;
pub mod validation_constants;
pub mod version;

pub use events::*;
pub use llm::*;
pub use metrics::*;
pub use session::*;
pub use test_case::*;
pub use user::*;
pub use version::*;