agsamantha/node_modules/@langchain/core/dist/agents.d.ts

14 lines
277 B
TypeScript
Raw Normal View History

2024-10-02 20:15:21 +00:00
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;
};