File size: 937 Bytes
4c62137 | 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 | export interface CDCTPoint {
compression_level: number;
agent_response: string;
cc_score: number;
sa_score: number;
judge_reasoning: string;
}
export interface DDFTResult {
fabrication_claim: string;
accepted_fabrication: boolean;
fabrication_score: number;
judge_reasoning: string;
turns: { turn: number; role: string; content: string }[];
}
export interface AGTScores {
truthfulness: number;
non_harm: number;
harmony: number;
responsibility: number;
}
export interface AGTResult {
scores: AGTScores;
judge_reasoning: string;
consistency_note: string;
turns: { turn: number; prompt: string; response: string }[];
}
export interface AuditResponse {
trust_score: number;
comprehension_score: number;
fabrication_score: number;
ethical_score: number;
cdct: CDCTPoint[];
ddft: DDFTResult | null;
agt: AGTResult | null;
}
export interface Concept {
name: string;
domain: string;
}
|