import { AgentStep } from "@langchain/core/agents"; //#region src/agents/format_scratchpad/log.d.ts /** * Construct the scratchpad that lets the agent continue its thought process. * @param intermediateSteps * @param observationPrefix * @param llmPrefix * @returns a string with the formatted observations and agent logs */ declare function formatLogToString(intermediateSteps: AgentStep[], observationPrefix?: string, llmPrefix?: string): string; //#endregion export { formatLogToString }; //# sourceMappingURL=log.d.ts.map