curl --request GET \
--url https://api.fireworks.ai/v1/accounts/{account_id}/evaluators/{evaluator_id} \
--header 'Authorization: Bearer <token>'{
"name": "<string>",
"displayName": "<string>",
"description": "<string>",
"createTime": "2023-11-07T05:31:56Z",
"createdBy": "<string>",
"updateTime": "2023-11-07T05:31:56Z",
"state": "STATE_UNSPECIFIED",
"requirements": "<string>",
"entryPoint": "<string>",
"status": {
"code": "OK",
"message": "<string>"
},
"commitHash": "<string>",
"source": {
"type": "TYPE_UNSPECIFIED",
"githubRepositoryName": "<string>"
},
"defaultDataset": "<string>"
}Retrieves an evaluator by name. Use this to monitor build progress after creation (step 6 in the Create Evaluator workflow).
Possible states:
BUILDING - Environment is being preparedACTIVE - Evaluator is ready to useBUILD_FAILED - Check build logs via Get Evaluator Build Log Endpointcurl --request GET \
--url https://api.fireworks.ai/v1/accounts/{account_id}/evaluators/{evaluator_id} \
--header 'Authorization: Bearer <token>'{
"name": "<string>",
"displayName": "<string>",
"description": "<string>",
"createTime": "2023-11-07T05:31:56Z",
"createdBy": "<string>",
"updateTime": "2023-11-07T05:31:56Z",
"state": "STATE_UNSPECIFIED",
"requirements": "<string>",
"entryPoint": "<string>",
"status": {
"code": "OK",
"message": "<string>"
},
"commitHash": "<string>",
"source": {
"type": "TYPE_UNSPECIFIED",
"githubRepositoryName": "<string>"
},
"defaultDataset": "<string>"
}Bearer authentication using your Fireworks API key. Format: Bearer <API_KEY>
The fields to be returned in the response. If empty or "*", all fields will be returned.
A successful response.
STATE_UNSPECIFIED, ACTIVE, BUILDING, BUILD_FAILED Show child attributes
Source information for the evaluator codebase.
Show child attributes
Was this page helpful?