systemprompt-identifiers 0.30.1

Typed newtype identifiers (UserId, TraceId, AgentId, McpServerId…) for systemprompt.io AI governance infrastructure. Enforces type-safe IDs across every boundary in the MCP governance pipeline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Evaluation subsystem identifiers (runs, cases, results, pairs, judge
//! calls, rubrics).
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

crate::define_id!(EvalRunId, generate, schema);
crate::define_id!(EvalCaseId, generate, schema);
crate::define_id!(EvalResultId, generate, schema);
crate::define_id!(EvalPairId, generate, schema);
crate::define_id!(EvalJudgeCallId, generate, schema);
crate::define_id!(EvalRubricId, generate, schema);