UNPKG

@autobe/agent

Version:

AI backend server code generator

19 lines (18 loc) 774 B
import { AutoBeAnalyze, AutoBeAnalyzeWriteSectionEvent } from "@autobe/interface"; import { AutoBeContext } from "../../../context/AutoBeContext"; import { IAutoBeOrchestrateHistory } from "../../../structures/IAutoBeOrchestrateHistory"; /** * Transform histories for key decision extraction from a single file. * * Provides the extractor with: * * 1. The system prompt for decision extraction * 2. The full section content of ONE file * * Each file is processed independently in parallel, so only one file's content * is included per call. */ export declare const transformAnalyzeExtractDecisionsHistory: (_ctx: AutoBeContext, props: { file: AutoBeAnalyze.IFileScenario; sectionEvents: AutoBeAnalyzeWriteSectionEvent[][]; }) => IAutoBeOrchestrateHistory;