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
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
//! Additional domain types for stronger type safety
//!
//! This module provides newtypes for common domain concepts to avoid
//! primitive obsession and ensure validation at boundaries.

use nutype::nutype;
#[allow(unused_imports)] // These are used by nutype derive macros
use serde::{Deserialize, Serialize};
use std::str::FromStr;
use tracing::warn;

/// User agent string from HTTP headers
///
/// Limited to 1000 characters to prevent DoS attacks and database storage issues
/// while accommodating most real-world user agent strings.
#[nutype(
    validate(not_empty, len_char_max = 1000),
    derive(
        Debug,
        Clone,
        PartialEq,
        Eq,
        Hash,
        Serialize,
        Deserialize,
        AsRef,
        Display
    )
)]
pub struct UserAgent(String);

/// IP address (v4 or v6)
#[nutype(
    validate(predicate = |s| std::net::IpAddr::from_str(s).is_ok()),
    derive(
        Debug,
        Clone,
        PartialEq,
        Eq,
        Hash,
        Serialize,
        Deserialize,
        AsRef,
        Display
    )
)]
pub struct IpAddress(String);

/// A tag for categorizing sessions, requests, etc.
///
/// Limited to 100 characters to maintain reasonable tag lengths for display
/// and indexing purposes while allowing descriptive categorization.
#[nutype(
    validate(
        not_empty,
        len_char_max = 100,
        regex = r"^[a-zA-Z0-9][a-zA-Z0-9:._-]*$"
    ),
    derive(
        Debug,
        Clone,
        PartialEq,
        Eq,
        Hash,
        Serialize,
        Deserialize,
        AsRef,
        Display
    )
)]
pub struct Tag(String);

/// Test case description
///
/// Limited to 1000 characters to ensure descriptions remain concise and focused
/// while providing enough space for detailed test scenarios.
#[nutype(
    validate(not_empty, len_char_max = 1000),
    derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, AsRef, Display)
)]
pub struct TestCaseDescription(String);

/// Prompt template for test cases
///
/// Hard limit of 10MB (10,485,760 chars) for DoS protection.
/// Soft limit of 100k chars logs warnings for unusual usage patterns.
#[nutype(
    validate(
        not_empty,
        len_char_max = 10485760,
        predicate = |s| {
            if s.len() > 100_000 {
                warn!(
                    "Prompt template exceeds soft limit of 100k chars (actual: {} chars)",
                    s.len()
                );
            }
            true // Always valid, just log warning
        }
    ),
    derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, AsRef, Display)
)]
pub struct PromptTemplate(String);

/// Pattern for matching expected or forbidden content
///
/// Limited to 1000 characters to support reasonable regex/text patterns
/// while preventing performance issues with overly complex patterns.
#[nutype(
    validate(not_empty, len_char_max = 1000),
    derive(
        Debug,
        Clone,
        PartialEq,
        Eq,
        Hash,
        Serialize,
        Deserialize,
        AsRef,
        Display
    )
)]
pub struct Pattern(String);

/// LLM response text
///
/// Hard limit of 10MB (10,485,760 chars) for DoS protection.
/// Soft limit of 100k chars logs warnings for unusual usage patterns.
#[nutype(
    validate(
        len_char_max = 10485760,
        predicate = |s| {
            if s.len() > 100_000 {
                warn!(
                    "Response text exceeds soft limit of 100k chars (actual: {} chars, ~{} tokens)",
                    s.len(),
                    s.len() / 4
                );
            }
            true // Always valid, just log warning
        }
    ),
    derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, AsRef, Display)
)]
pub struct ResponseText(String);

/// Assertion description
///
/// Limited to 500 characters to ensure clear, focused assertion descriptions
/// suitable for test result reporting and debugging.
#[nutype(
    validate(not_empty, len_char_max = 500),
    derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, AsRef, Display)
)]
pub struct AssertionDescription(String);

/// Error message
///
/// Limited to 5000 characters to capture detailed error information including
/// stack traces while preventing excessive log/storage usage.
#[nutype(
    validate(not_empty, len_char_max = 5000),
    derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, AsRef, Display)
)]
pub struct ErrorMessage(String);

/// Model identifier from LLM provider
///
/// Limited to 200 characters to accommodate all known LLM model identifiers
/// (e.g., "claude-3-opus-20240229") with room for future expansion.
#[nutype(
    validate(not_empty, len_char_max = 200),
    derive(
        Debug,
        Clone,
        PartialEq,
        Eq,
        Hash,
        Serialize,
        Deserialize,
        AsRef,
        Display
    )
)]
pub struct ModelId(String);

/// LLM prompt text
///
/// Hard limit of 10MB (10,485,760 chars) for DoS protection.
/// Soft limit of 100k chars logs warnings for unusual usage patterns.
#[nutype(
    validate(
        not_empty,
        len_char_max = 10485760,
        predicate = |s| {
            if s.len() > 100_000 {
                warn!(
                    "Prompt exceeds soft limit of 100k chars (actual: {} chars, ~{} tokens)",
                    s.len(),
                    s.len() / 4
                );
            }
            true // Always valid, just log warning
        }
    ),
    derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, AsRef, Display)
)]
pub struct Prompt(String);

/// Finish reason from LLM response
///
/// Limited to 100 characters to accommodate all known finish reason values
/// (e.g., "stop", "length", "content_filter") with margin for new reasons.
#[nutype(
    validate(not_empty, len_char_max = 100),
    derive(
        Debug,
        Clone,
        PartialEq,
        Eq,
        Hash,
        Serialize,
        Deserialize,
        AsRef,
        Display
    )
)]
pub struct FinishReason(String);

/// Token count for LLM usage
#[nutype(
    validate(less_or_equal = 1000000),
    derive(
        Debug,
        Clone,
        Copy,
        PartialEq,
        Eq,
        PartialOrd,
        Ord,
        Hash,
        Serialize,
        Deserialize,
        AsRef,
        Display
    )
)]
pub struct TokenCount(u32);

/// Latency in milliseconds
#[nutype(
    validate(less_or_equal = 300000), // 5 minutes max
    derive(
        Debug,
        Clone,
        Copy,
        PartialEq,
        Eq,
        PartialOrd,
        Ord,
        Hash,
        Serialize,
        Deserialize,
        AsRef,
        Display
    )
)]
pub struct Latency(u64);

/// Request count for tracking usage
#[nutype(derive(
    Debug,
    Clone,
    Copy,
    PartialEq,
    Eq,
    PartialOrd,
    Ord,
    Hash,
    Serialize,
    Deserialize,
    AsRef,
    Display
))]
pub struct RequestCount(u64);

impl RequestCount {
    /// Increment the count by one, saturating at the maximum value
    pub fn increment(self) -> Self {
        Self::new(self.as_ref().saturating_add(1))
    }
}

/// Field name for error context
#[nutype(
    validate(not_empty, len_char_max = 100),
    derive(
        Debug,
        Clone,
        PartialEq,
        Eq,
        Hash,
        Serialize,
        Deserialize,
        AsRef,
        Display
    )
)]
pub struct FieldName(String);

/// Resource identifier for error context
#[nutype(
    validate(not_empty, len_char_max = 200),
    derive(
        Debug,
        Clone,
        PartialEq,
        Eq,
        Hash,
        Serialize,
        Deserialize,
        AsRef,
        Display
    )
)]
pub struct ResourceId(String);

/// Reason for version change or deactivation
///
/// Limited to 1000 characters to capture meaningful change rationales
/// for audit purposes while maintaining reasonable storage constraints.
#[nutype(
    validate(not_empty, len_char_max = 1000),
    derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, AsRef, Display)
)]
pub struct ChangeReason(String);

/// LLM request parameters as JSON
#[nutype(derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize))]
pub struct LlmParameters(serde_json::Value);

/// Test case metadata assertions as JSON
#[nutype(derive(Debug, Clone, PartialEq, Serialize, Deserialize))]
pub struct MetadataAssertions(serde_json::Value);

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_user_agent_validation() {
        assert!(UserAgent::try_new("Mozilla/5.0".to_string()).is_ok());
        assert!(UserAgent::try_new("".to_string()).is_err());
        assert!(UserAgent::try_new("a".repeat(1001)).is_err());
    }

    #[test]
    fn test_ip_address_validation() {
        // Valid IPv4
        assert!(IpAddress::try_new("192.168.1.1".to_string()).is_ok());
        assert!(IpAddress::try_new("10.0.0.0".to_string()).is_ok());
        assert!(IpAddress::try_new("255.255.255.255".to_string()).is_ok());

        // Valid IPv6
        assert!(IpAddress::try_new("2001:0db8:85a3:0000:0000:8a2e:0370:7334".to_string()).is_ok());
        assert!(IpAddress::try_new("::1".to_string()).is_ok());
        assert!(IpAddress::try_new("fe80::1".to_string()).is_ok());

        // Invalid
        assert!(IpAddress::try_new("256.1.1.1".to_string()).is_err());
        assert!(IpAddress::try_new("192.168.1".to_string()).is_err());
        assert!(IpAddress::try_new("not-an-ip".to_string()).is_err());
        assert!(IpAddress::try_new("".to_string()).is_err());
    }

    #[test]
    fn test_tag_validation() {
        assert!(Tag::try_new("production".to_string()).is_ok());
        assert!(Tag::try_new("api:v2".to_string()).is_ok());
        assert!(Tag::try_new("test-case_1".to_string()).is_ok());
        assert!(Tag::try_new("feature.enabled".to_string()).is_ok());

        assert!(Tag::try_new("".to_string()).is_err());
        assert!(Tag::try_new("-invalid".to_string()).is_err());
        assert!(Tag::try_new("invalid ".to_string()).is_err());
        assert!(Tag::try_new("a".repeat(101)).is_err());
    }

    #[test]
    fn test_prompt_template_validation() {
        assert!(PromptTemplate::try_new("Hello {name}!".to_string()).is_ok());
        assert!(PromptTemplate::try_new("".to_string()).is_err());
        // Test that we can create large prompts up to 10MB
        assert!(PromptTemplate::try_new("a".repeat(1_000_000)).is_ok());
        // But not beyond 10MB
        assert!(PromptTemplate::try_new("a".repeat(10_485_761)).is_err());
    }

    #[test]
    fn test_pattern_validation() {
        assert!(Pattern::try_new("expected output".to_string()).is_ok());
        assert!(Pattern::try_new("".to_string()).is_err());
        assert!(Pattern::try_new("a".repeat(1001)).is_err());
    }

    #[test]
    fn test_soft_limit_warnings() {
        // Test that large inputs can be created (would trigger warning logs)
        // The predicate always returns true, so these should succeed
        let large_prompt = Prompt::try_new("a".repeat(200_000)).unwrap();
        assert_eq!(large_prompt.as_ref().len(), 200_000);

        let large_response = ResponseText::try_new("b".repeat(200_000)).unwrap();
        assert_eq!(large_response.as_ref().len(), 200_000);

        let large_template = PromptTemplate::try_new("c".repeat(200_000)).unwrap();
        assert_eq!(large_template.as_ref().len(), 200_000);
    }
}