union_square 0.1.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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! 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 events;
pub mod llm;
pub mod session;
pub mod user;
pub mod version;

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