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