agsamantha/node_modules/@langchain/core/dist/agents.d.ts
2024-10-02 15:15:21 -05:00

13 lines
277 B
TypeScript

export type AgentAction = {
tool: string;
toolInput: string | Record<string, any>;
log: string;
};
export type AgentFinish = {
returnValues: Record<string, any>;
log: string;
};
export type AgentStep = {
action: AgentAction;
observation: string;
};