{"version":3,"file":"agents.cjs","names":[],"sources":["../src/agents.ts"],"sourcesContent":["export type AgentAction = {\n  tool: string;\n  // oxlint-disable-next-line @typescript-eslint/no-explicit-any\n  toolInput: string | Record<string, any>;\n  log: string;\n};\n\nexport type AgentFinish = {\n  // oxlint-disable-next-line @typescript-eslint/no-explicit-any\n  returnValues: Record<string, any>;\n  log: string;\n};\n\nexport type AgentStep = {\n  action: AgentAction;\n  observation: string;\n};\n"],"mappings":""}