Agent.getTools()
The .getTools() method retrieves the tools configured for an agent, resolving them if they're a function. These tools extend the agent's capabilities, allowing it to perform specific actions or access external systems.
Usage exampleDirect link to Usage example
await agent.getTools();
ParametersDirect link to Parameters
options?:
{ requestContext?: RequestContext }
= {}
Optional configuration object containing runtime context.
ReturnsDirect link to Returns
tools:
TTools | Promise<TTools>
The tools configured for the agent, either as a direct object or a promise that resolves to the tools.
Extended usage exampleDirect link to Extended usage example
await agent.getTools({
requestContext: new RequestContext(),
});
Options parametersDirect link to Options parameters
requestContext?:
RequestContext
= new RequestContext()
Runtime context for dependency injection and contextual information.