Interface: SemanticProbeResult
Defined in: packages/core/src/introspection/SemanticProbe.ts:120
Result of a single semantic probe evaluation.
Properties
contractViolated
readonly contractViolated: boolean;Defined in: packages/core/src/introspection/SemanticProbe.ts:128
Whether the behavioral contract was violated
driftLevel
readonly driftLevel: DriftLevel;Defined in: packages/core/src/introspection/SemanticProbe.ts:126
Drift classification
evaluatedAt
readonly evaluatedAt: string;Defined in: packages/core/src/introspection/SemanticProbe.ts:136
ISO-8601 timestamp of evaluation
probe
readonly probe: SemanticProbe;Defined in: packages/core/src/introspection/SemanticProbe.ts:122
The probe that was evaluated
rawResponse
readonly rawResponse: string | null;Defined in: packages/core/src/introspection/SemanticProbe.ts:134
Raw LLM response (if configured)
reasoning
readonly reasoning: string;Defined in: packages/core/src/introspection/SemanticProbe.ts:132
LLM judge's reasoning
similarityScore
readonly similarityScore: number;Defined in: packages/core/src/introspection/SemanticProbe.ts:124
Semantic similarity score (0.0 = completely different, 1.0 = identical)
violations
readonly violations: readonly string[];Defined in: packages/core/src/introspection/SemanticProbe.ts:130
Specific violations detected by the judge