/** * Validates LLM-as-Judge evaluation requests. */ export type LLMJudge = { criteria: string; score_name: string; llm_provider?: string; llm_name?: string; max_concurrency?: number; };