nemo_microservices.types.evaluation.config_list_params#

Module Contents#

Classes#

API#

class nemo_microservices.types.evaluation.config_list_params.ConfigListParams#

Bases: typing_extensions.TypedDict

filter: nemo_microservices.types.evaluation_config_filter_param.EvaluationConfigFilterParam#

None

Filter configs on various criteria.

page: int#

None

Page number.

page_size: int#

None

Page size.

search: nemo_microservices.types.evaluation.evaluation_config_search_param.EvaluationConfigSearchParam#

None

Search evaluation configs using substring matching.

You can combine multiple search fields and filters.

For example:

  • ?search[name]=llama-benchmark: searches all configs with ‘llama-benchmark’ in the name.

  • ?search[type]=classification: searches all configs with ‘classification’ in the type.

  • ?search[tasks]=accuracy: searches all configs with ‘accuracy’ in the tasks.

  • ?search[name]=llama-benchmark&search[type]=classification: searches all configs with ‘llama-benchmark’ in the name AND ‘classification’ in the type.

  • ?search[updated_at][start]=2024-01-01T00:00:00 finds all configs updated on or after the start date

  • ?search[created_at][start]=2022-01-01&search[updated_at][end]=2024-01-01 finds all configs created from start date up to and including end date

sort: nemo_microservices.types.shared.generic_sort_field.GenericSortField#

None

The field to sort by.

To sort in decreasing order, use - in front of the field name.