mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-22 00:01:34 +00:00
f1e84cb088
* feat: add backend preview validation to ai evals Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix: refresh shared preview workspace assets Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix: harden shared backend preview validation Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
196 lines
5.9 KiB
TypeScript
196 lines
5.9 KiB
TypeScript
import { readJsonFile } from "../core/files";
|
|
import type { BackendValidationSettings } from "../core/backendValidation";
|
|
import type { FrontendEvalModelConfig } from "../core/models";
|
|
import { validateFlowState, type FlowState } from "../core/validators";
|
|
import type { BenchmarkArtifactFile, ModeRunner } from "../core/types";
|
|
import {
|
|
runFlowEval,
|
|
type FlowFixture,
|
|
} from "../adapters/frontend/core/flow/flowEvalRunner";
|
|
import type { FlowWorkspaceFixtures } from "../adapters/frontend/core/flow/fileHelpers";
|
|
import { BackendPreviewClient } from "../adapters/frontend/backendPreview";
|
|
import { DEFAULT_FRONTEND_EVAL_MODEL, getFrontendApiKey } from "./frontendCommon";
|
|
|
|
interface FlowInitialFixture {
|
|
flow?: FlowFixture;
|
|
workspace?: FlowWorkspaceFixtures;
|
|
}
|
|
|
|
export function createFlowModeRunner(
|
|
modelConfig: FrontendEvalModelConfig = DEFAULT_FRONTEND_EVAL_MODEL,
|
|
backendValidation?: BackendValidationSettings
|
|
): ModeRunner<FlowInitialFixture, FlowState, FlowState> {
|
|
return {
|
|
mode: "flow",
|
|
concurrency: 5,
|
|
judgeThreshold: 80,
|
|
async loadInitial(path) {
|
|
if (!path) {
|
|
return undefined;
|
|
}
|
|
return normalizeFlowInitialFixture(await readJsonFile<unknown>(path));
|
|
},
|
|
async loadExpected(path) {
|
|
if (!path) {
|
|
return undefined;
|
|
}
|
|
return normalizeFlowStateFixture(await readJsonFile<unknown>(path));
|
|
},
|
|
async run(prompt, initial, context) {
|
|
const result = await runFlowEval(prompt, getFrontendApiKey(modelConfig.provider), {
|
|
initialFlow: initial?.flow,
|
|
workspaceFixtures: initial?.workspace,
|
|
provider: modelConfig.provider,
|
|
model: modelConfig.model,
|
|
runContext: context,
|
|
});
|
|
|
|
return {
|
|
success: result.success,
|
|
actual: normalizeFlowStateFixture(result.flow),
|
|
error: result.error,
|
|
assistantMessageCount: result.assistantMessageCount,
|
|
toolCallCount: result.toolCallCount,
|
|
toolsUsed: result.toolsUsed,
|
|
skillsInvoked: [],
|
|
tokenUsage: result.tokenUsage,
|
|
};
|
|
},
|
|
validate({ evalCase, actual, initial, expected }) {
|
|
return validateFlowState({
|
|
actual,
|
|
initial: initial?.flow,
|
|
expected,
|
|
validate: evalCase.validate,
|
|
});
|
|
},
|
|
async backendValidate({ evalCase, initial, actual, context }) {
|
|
if (backendValidation?.mode !== "preview" || !evalCase.runtime?.backendPreview) {
|
|
return null;
|
|
}
|
|
|
|
if (!actual.value) {
|
|
return {
|
|
checks: [
|
|
{
|
|
name: "backend flow preview succeeded",
|
|
passed: false,
|
|
details: "Generated flow is missing value.modules",
|
|
},
|
|
],
|
|
};
|
|
}
|
|
|
|
const previewClient = new BackendPreviewClient(backendValidation);
|
|
return await previewClient.withWorkspace(evalCase.id, context.attempt, async (workspaceId) => {
|
|
await seedWorkspaceFixtures(previewClient, workspaceId, initial?.workspace);
|
|
|
|
const completedJob = await previewClient.runFlowPreview({
|
|
workspaceId,
|
|
value: actual.value as Record<string, unknown>,
|
|
args: evalCase.runtime?.backendPreview?.args ?? {},
|
|
timeoutSeconds: evalCase.runtime?.backendPreview?.timeoutSeconds,
|
|
});
|
|
|
|
return {
|
|
checks: [
|
|
{
|
|
name: "backend flow preview succeeded",
|
|
passed: completedJob.success,
|
|
details: completedJob.success
|
|
? `workspace=${workspaceId}`
|
|
: `workspace=${workspaceId}; job=${completedJob.id}`,
|
|
},
|
|
],
|
|
artifactFiles: [
|
|
{
|
|
path: "backend-preview.json",
|
|
content:
|
|
JSON.stringify(
|
|
{
|
|
workspaceId,
|
|
jobId: completedJob.id,
|
|
success: completedJob.success,
|
|
result: completedJob.result,
|
|
logs: completedJob.logs,
|
|
completedJob: completedJob.raw,
|
|
},
|
|
null,
|
|
2
|
|
) + "\n",
|
|
},
|
|
],
|
|
};
|
|
});
|
|
},
|
|
buildArtifacts(actual): BenchmarkArtifactFile[] {
|
|
return [
|
|
{
|
|
path: "flow.json",
|
|
content: JSON.stringify(actual, null, 2) + "\n",
|
|
},
|
|
];
|
|
},
|
|
};
|
|
}
|
|
|
|
function normalizeFlowInitialFixture(value: unknown): FlowInitialFixture {
|
|
if (isObject(value) && ("flow" in value || "workspace" in value)) {
|
|
const fixture = value as {
|
|
flow?: FlowFixture;
|
|
workspace?: FlowWorkspaceFixtures;
|
|
};
|
|
return {
|
|
flow: fixture.flow,
|
|
workspace: fixture.workspace,
|
|
};
|
|
}
|
|
|
|
return {
|
|
flow: normalizeFlowStateFixture(value),
|
|
};
|
|
}
|
|
|
|
function normalizeFlowStateFixture(value: unknown): FlowState {
|
|
if (!isObject(value)) {
|
|
return {};
|
|
}
|
|
if ("flow" in value && isObject((value as { flow?: unknown }).flow)) {
|
|
return (value as { flow: FlowState }).flow;
|
|
}
|
|
return value as FlowState;
|
|
}
|
|
|
|
function isObject(value: unknown): value is Record<string, unknown> {
|
|
return typeof value === "object" && value !== null && !Array.isArray(value);
|
|
}
|
|
|
|
async function seedWorkspaceFixtures(
|
|
previewClient: BackendPreviewClient,
|
|
workspaceId: string,
|
|
fixtures?: FlowWorkspaceFixtures
|
|
): Promise<void> {
|
|
for (const script of fixtures?.scripts ?? []) {
|
|
await previewClient.createScript({
|
|
workspaceId,
|
|
path: script.path,
|
|
summary: script.summary,
|
|
description: script.description,
|
|
schema: script.schema,
|
|
content: script.content,
|
|
language: script.language,
|
|
});
|
|
}
|
|
|
|
for (const flow of fixtures?.flows ?? []) {
|
|
await previewClient.createFlow({
|
|
workspaceId,
|
|
path: flow.path,
|
|
summary: flow.summary,
|
|
description: flow.description,
|
|
schema: flow.schema,
|
|
value: flow.value as Record<string, unknown>,
|
|
});
|
|
}
|
|
}
|