export type DecisionType = "YES" | "NO" | "CONDITIONAL"; export interface AnalysisResponse { decision: DecisionType; summary: string; operations: string[]; required_tools: string[]; missing_tools?: string[]; recommendations?: string[]; status: string; features?: Record; classification?: Record; match_result?: Record; } export interface AnalyzeFormInputs { material: string; tolerance: string; threads?: string; }