Agent.getModel()
The .getModel() method retrieves the language model configured for an agent, resolving it if it's a function. This method is used to access the underlying model that powers the agent's capabilities.
Usage example
await agent.getModel();
Parameters
{ requestContext = new RequestContext() }?:
{ requestContext?: RequestContext }
= new RequestContext()
Optional configuration object containing request context.
Returns
model:
MastraLanguageModel | Promise<MastraLanguageModel>
The language model configured for the agent, either as a direct instance or a promise that resolves to the model.
Extended usage example
await agent.getModel({
requestContext: new RequestContext(),
});
Options parameters
requestContext?:
RequestContext
= undefined
Request Context for dependency injection and contextual information.