ai-ctrf
Version:
Generate AI summaries of test results using a wide range of AI models like OpenAI, Anthropic, Gemini, Mistral, Grok, DeepSeek, Azure, Perplexity, OpenRouter, and custom OpenAI-compatible APIs
11 lines (10 loc) • 421 B
TypeScript
import { type CtrfReport } from '../types/ctrf';
import { type Arguments } from './index';
export interface JsonSummaryResponse {
summary: string;
code_issues: string;
timeout_issues: string;
application_issues: string;
recommendations: string;
}
export declare function generateJsonSummary(report: CtrfReport, model: string, args: Arguments, customUrl?: string): Promise<JsonSummaryResponse | null>;