UNPKG

@autobe/agent

Version:

AI backend server code generator

12 lines (11 loc) 651 B
import { AutoBeAnalyzeReviewEvent, AutoBeAnalyzeScenarioEvent, AutoBeProgressEventBase } from "@autobe/interface"; import { AutoBeAnalyzeFile } from "@autobe/interface/src/histories/contents/AutoBeAnalyzeFile"; import { ILlmSchema } from "@samchon/openapi"; import { AutoBeContext } from "../../context/AutoBeContext"; export declare const orchestrateAnalyzeReview: <Model extends ILlmSchema.Model>(ctx: AutoBeContext<Model>, props: { scenario: AutoBeAnalyzeScenarioEvent; allFiles: AutoBeAnalyzeFile[]; myFile: AutoBeAnalyzeFile; progress: AutoBeProgressEventBase; promptCacheKey: string; }) => Promise<AutoBeAnalyzeReviewEvent>;