@autobe/agent
Version:
AI backend server code generator
17 lines (16 loc) • 661 B
TypeScript
import { AutoBeAnalyzeRole } from "@autobe/interface";
import { ILlmSchema } from "@samchon/openapi";
import { AutoBeContext } from "../../context/AutoBeContext";
import { IFile } from "./AutoBeAnalyzeFileSystem";
import { AutoBeAnalyzePointer } from "./AutoBeAnalyzePointer";
export declare function writeDocumentUntilReviewPassed<Model extends ILlmSchema.Model>(ctx: AutoBeContext<Model>, props: {
totalFiles: Pick<IFile, "filename" | "reason">[];
filename: string;
roles: AutoBeAnalyzeRole[];
progress: {
total: number;
completed: number;
};
retry?: number;
prevReview?: string;
}): Promise<AutoBeAnalyzePointer>;