@langchain/core
Version:
Core LangChain.js abstractions and schemas
1 lines • 523 B
Source Map (JSON)
{"version":3,"file":"agents.cjs","names":[],"sources":["../src/agents.ts"],"sourcesContent":["export type AgentAction = {\n tool: string;\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n toolInput: string | Record<string, any>;\n log: string;\n};\n\nexport type AgentFinish = {\n // eslint-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":""}