UNPKG

@autobe/agent

Version:

AI backend server code generator

18 lines (17 loc) 853 B
import { AutoBeAnalyze, AutoBeAnalyzeScenarioEvent, AutoBeAnalyzeWriteModuleEvent, AutoBeAnalyzeWriteSectionEvent, AutoBeAnalyzeWriteUnitEvent, AutoBeProgressEventBase } from "@autobe/interface"; import { AutoBeContext } from "../../context/AutoBeContext"; export declare const orchestrateAnalyzeWriteSectionPatch: (ctx: AutoBeContext, props: { scenario: AutoBeAnalyzeScenarioEvent; file: AutoBeAnalyze.IFileScenario; moduleEvent: AutoBeAnalyzeWriteModuleEvent; unitEvent: AutoBeAnalyzeWriteUnitEvent; moduleIndex: number; unitIndex: number; previousSectionEvent: AutoBeAnalyzeWriteSectionEvent; feedback: string; progress: AutoBeProgressEventBase; promptCacheKey: string; retry: number; scenarioEntityNames?: string[]; sectionIndices?: number[] | null; }) => Promise<AutoBeAnalyzeWriteSectionEvent>;