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
1
2
3
4
5
6
7
8
9
10
11
12
//! Infrastructure layer for Union Square
//!
//! This module contains the implementations for external concerns.
//! Currently includes:
//! - Database access via SQLx
//! - EventCore integration for event sourcing

pub mod database;
pub mod eventcore;
pub mod log_messages;

pub use database::*;