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