@autobe/agent
Version:
AI backend server code generator
13 lines (12 loc) • 457 B
TypeScript
import { ILlmSchema } from "@samchon/openapi";
import { AutoBeContext } from "../../context/AutoBeContext";
export type IOrchestrateAnalyzeReviewerResult = {
type: "reject";
value: string;
} | {
type: "accept";
};
export declare const orchestrateAnalyzeReviewer: <Model extends ILlmSchema.Model>(ctx: AutoBeContext<Model>, input: {
/** Total file names */
files: Record<string, string>;
}) => Promise<IOrchestrateAnalyzeReviewerResult>;