Skip to main content

Agent.listTools()

The .listTools() 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 example
Direct link to Usage example

await agent.listTools();

Parameters
Direct link to Parameters

options?:

{ requestContext?: RequestContext }
= {}
Optional configuration object containing request context.

Returns
Direct 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 example
Direct link to Extended usage example

await agent.listTools({
requestContext: new RequestContext(),
});

Options parameters
Direct link to Options parameters

requestContext?:

RequestContext
= new RequestContext()
Request Context for dependency injection and contextual information.

On this page