Tales-Cunha
feat(tester): implement PoC generator with DeepSeek and Foundry loop
5710d63
Raw
History Blame
306 Bytes
import { StateSchema } from "@langchain/langgraph";
import { z } from "zod";
export const CoderState = new StateSchema({
requirements: z.array(z.string()).default([]),
contract: z.string().default(""),
compilationErrors: z.array(z.string()).default([]),
reviewSummary: z.string().default(""),
});