For AI agents: The documentation index is at https://docs.digitalocean.com/llms.txt. Markdown versions of pages use the same URL with index.html.md in place of the HTML page (for example, append index.html.md to the directory path instead of opening the HTML document).
Usage
client.genai.list_evaluation_metrics()
Returns JSONRaises HttpResponseError
Description
To list all evaluation metrics, send a GET request to /v2/gen-ai/evaluation_metrics.
Response Example
Show Response Example
{
"metrics": [
{
"associated_presets": [],
"category": "METRIC_CATEGORY_UNSPECIFIED",
"description": "example string",
"evaluation_scope": "EVALUATION_SCOPE_UNSPECIFIED",
"inverted": true,
"is_metric_goal": true,
"metric_name": "example name",
"metric_rank": 123,
"metric_type": "METRIC_TYPE_UNSPECIFIED",
"metric_uuid": "123e4567-e89b-12d3-a456-426614174000",
"metric_value_type": "METRIC_VALUE_TYPE_UNSPECIFIED",
"range_max": 123,
"range_min": 123,
"source": "EVALUATION_METRIC_SOURCE_UNSPECIFIED"
}
]
}
See /v2/gen-ai/evaluation_metrics in the API reference for additional detail on responses, headers, parameters, and more.