client.list_models

Retrieves the model IDs of all models accessible within a project.

Input ParameterTypeDefaultDescription
project_idstrNoneThe unique identifier for the project.
PROJECT_ID = 'example_project'

client.list_models(
    project_id=PROJECT_ID
)
Return TypeDescription
listA list containing the string ID of each model.
[
    'model_a',
    'model_b',
    'model_c'
]