Skip to main content

getScorer()

The getScorer() method retrieves a specific scorer that was registered with the Mastra instance using its registration key. This method provides type-safe access to scorers and throws an error if the requested scorer isn't found.

Usage example
Direct link to Usage example

import { mastra } from './mastra'

// Get a specific scorer by key
const relevancyScorer = mastra.getScorer('relevancyScorer')

const weatherAgent = mastra.getAgent('weatherAgent')

// Use the scorer to evaluate an AI output
await weatherAgent.generate('What is the weather in Rome', {
scorers: {
answerRelevancy: {
scorer: relevancyScorer,
},
},
})

Parameters
Direct link to Parameters

key:

string
The registration key of the scorer to retrieve. This should match a key used when registering scorers in the Mastra constructor.

Returns
Direct link to Returns

scorer:

MastraScorer
The MastraScorer instance associated with the provided key.

Error handling
Direct link to Error handling

This method throws a MastraError if:

  • The scorer with the specified key isn't found
  • No scorers are registered with the Mastra instance
try {
const scorer = mastra.getScorer('nonExistentScorer')
} catch (error) {
if (error.id === 'MASTRA_GET_SCORER_NOT_FOUND') {
console.log('Scorer not found, using default evaluation')
}
}
On this page