| 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; |
| } |
|
|