Skip to main content

Methods

Creates or updates an MLRepo entity based on the provided manifest.

Parameters

manifest
MlRepoManifest
required
🔗 MlRepoManifestMLRepo manifest
dry_run
typing.Optional[bool]
Validate the manifest and collaborators without persisting changes or updating artifact location in the database

Returns

GetMlRepoResponse
GetMlRepoResponse
🔗 GetMlRepoResponseReturns the created or updated MLRepo entity based on the provided manifest.

Usage

Get an ML Repo by its ID.

Parameters

id
str
required

Returns

GetMlRepoResponse
GetMlRepoResponse
🔗 GetMlRepoResponseThe ML Repo data

Usage

Delete an ML Repo by its ID.

Parameters

id
str
required

Returns

EmptyResponse
EmptyResponse
🔗 EmptyResponseEmpty response indicating successful deletion

Usage

List ML Repos with optional filtering by name.

Parameters

name
typing.Optional[str]
Name of the ML Repo to filter by
limit
typing.Optional[int]
Maximum number of ML Repos to return
offset
typing.Optional[int]
Number of ML Repos to skip for pagination

Returns

SyncPager[MlRepo, ListMlReposResponse]
SyncPager[MlRepo, ListMlReposResponse]
🔗 ListMlReposResponseList of ML Repos matching the query with pagination information

Usage