Files
alighasami 3d5eaf9445
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
first commit
2026-03-17 16:22:57 +03:30

111 lines
3.0 KiB
TypeScript

import type { INodeTypeDescription } from 'n8n-workflow';
import type { SimpleWorkflow } from '@/types/workflow';
import type { EvaluationContext, Evaluator, Feedback } from '../../harness/harness-types';
import { programmaticEvaluation } from '../../programmatic/programmatic-evaluation';
/**
* Format violations as a comment string.
*/
function formatViolations(
violations: Array<{ type: string; description: string }>,
): string | undefined {
if (!violations || violations.length === 0) return undefined;
return violations.map((v) => `[${v.type}] ${v.description}`).join('; ');
}
/**
* Create a programmatic evaluator that runs rule-based checks.
* This doesn't require an LLM - it uses static analysis.
*
* @param nodeTypes - Node type descriptions for validation
* @returns An evaluator that produces feedback from programmatic checks
*/
export function createProgrammaticEvaluator(
nodeTypes: INodeTypeDescription[],
): Evaluator<EvaluationContext> {
const fb = (
metric: string,
score: number,
kind: Feedback['kind'],
comment?: string,
): Feedback => ({
evaluator: 'programmatic',
metric,
score,
kind,
...(comment ? { comment } : {}),
});
return {
name: 'programmatic',
async evaluate(workflow: SimpleWorkflow, ctx: EvaluationContext): Promise<Feedback[]> {
const result = await programmaticEvaluation(
{
userPrompt: ctx.prompt,
generatedWorkflow: workflow,
referenceWorkflows: ctx.referenceWorkflows,
generatedCode: ctx.generatedCode,
},
nodeTypes,
);
const feedback: Feedback[] = [
// Overall programmatic score (scoring)
fb('overall', result.overallScore, 'score'),
// Stable category metrics (dashboard)
fb(
'connections',
result.connections.score,
'metric',
formatViolations(result.connections.violations),
),
fb('nodes', result.nodes.score, 'metric', formatViolations(result.nodes.violations)),
fb('trigger', result.trigger.score, 'metric', formatViolations(result.trigger.violations)),
fb(
'agentPrompt',
result.agentPrompt.score,
'metric',
formatViolations(result.agentPrompt.violations),
),
fb('tools', result.tools.score, 'metric', formatViolations(result.tools.violations)),
fb('fromAi', result.fromAi.score, 'metric', formatViolations(result.fromAi.violations)),
fb(
'credentials',
result.credentials.score,
'metric',
formatViolations(result.credentials.violations),
),
fb(
'graphValidation',
result.graphValidation.score,
'metric',
formatViolations(result.graphValidation.violations),
),
fb(
'parameters',
result.parameters.score,
'metric',
formatViolations(result.parameters.violations),
),
];
// Similarity check (if reference workflow provided)
if (result.similarity !== null && result.similarity !== undefined) {
feedback.push(
fb(
'similarity',
result.similarity.score,
'metric',
formatViolations(result.similarity.violations),
),
);
}
return feedback;
},
};
}