Shorthand helper to extract the Tools type from an AgentTypeConfig or ReactAgent.
const agent = createAgent({ tools: [searchTool, calculatorTool], ... });type Tools = InferAgentTools<typeof agent>; // readonly [typeof searchTool, typeof calculatorTool] Copy
const agent = createAgent({ tools: [searchTool, calculatorTool], ... });type Tools = InferAgentTools<typeof agent>; // readonly [typeof searchTool, typeof calculatorTool]
Shorthand helper to extract the Tools type from an AgentTypeConfig or ReactAgent.