> Discover all available pages from the documentation index: https://mastra.zisheng.pro/ko/llms.txt # 목록득점자() 그만큼`listScorers()`메소드는 Mastra 인스턴스에 등록된 모든 득점자를 반환합니다. 채점자는 AI 출력을 평가하는 데 사용되며 Agent 생성 또는 Workflow 실행 중에 기본 채점자를 재정의할 수 있습니다. ## 사용예 ```typescript import { mastra } from './mastra' // Get all registered scorers const allScorers = mastra.listScorers() // Access a specific scorer const myScorer = allScorers.relevancyScorer ``` ## 매개변수 이 메서드는 매개변수를 사용하지 않습니다. ## 보고 **scorers** (`Record | undefined`): 등록된 모든 스코어러를 담은 객체입니다. 키는 스코어러 이름이고 값은 MastraScorer 인스턴스입니다. 등록된 스코어러가 없으면 undefined를 반환합니다. ## 관련된 - [득점자()](https://mastra.zisheng.pro/ko/reference/core/getScorer): 키별로 특정 득점자를 얻습니다. - [getScorerById()](https://mastra.zisheng.pro/ko/reference/core/getScorerById): id 속성으로 득점자를 가져옵니다. - [득점자 개요](https://mastra.zisheng.pro/ko/docs/evals/overview): 채점자를 생성하고 사용하는 방법에 대해 알아봅니다.