cURL
curl --request GET \ --url https://api.futureagi.com/model-hub/eval-groups/get_evals_list/ \ --header 'X-Api-Key: <api-key>' \ --header 'X-Secret-Key: <api-key>'
{ "evals": [ { "id": "<eval_id>", "name": "<eval_name>", "eval_template_name": "<eval_template_name>", "eval_required_keys": [ "<eval_required_key1>", "<eval_required_key2>" ], "eval_template_tags": [ "<eval_template_tag1>", "<eval_template_tag2>" ], "description": "<eval_description>", "is_model_required": false, "type": "<eval_type>" } ], "eval_recommendations": [ "<eval_recommendation1>", "<eval_recommendation2>" ] }
Retrieves a list of evaluations for a given dataset, with options for filtering and ordering.
API Key for authentication. Click here to access API Key
Secret Key for authentication. Click here to access Secret Key
The UUID of the dataset for which to retrieve the evaluations.
Text to search for in the evaluation names.
A list of evaluations and recommendations.
Show child attributes
The unique identifier for the evaluation.
The display name of the evaluation.
The name of the underlying evaluation template.
The name of the template (used for user evals).
A list of input keys required by the evaluation.
Tags associated with the evaluation template.
A description of what the evaluation does.
Indicates if a model is required to run this evaluation.
The type of the evaluation.
futureagi_built
user_built
The model associated with the evaluation, if any.
The ID of the column associated with a user evaluation.
The timestamp of the last update.
The name of the evaluation group, if any.
A list of recommended evaluation categories.
Was this page helpful?