@langchain/core
Version:
Core LangChain.js abstractions and schemas
17 lines • 365 B
TypeScript
//#region src/agents.d.ts
type AgentAction = {
tool: string;
toolInput: string | Record<string, any>;
log: string;
};
type AgentFinish = {
returnValues: Record<string, any>;
log: string;
};
type AgentStep = {
action: AgentAction;
observation: string;
};
//#endregion
export { AgentAction, AgentFinish, AgentStep };
//# sourceMappingURL=agents.d.ts.map