Run

class Run:
    id: str
    project_id: str
    run_config_id: str
    display_name: Optional[str] = None
    metadata: Optional[dict[str, str]] = None
    run_config: Optional[RunConfig] = None

Fields

Argument
Description

id

str

The ID of the Run. Run ID starts with the prefix run_

project_id

str

The ID of the Project this Run is associated with.

run_config_id

str

The ID of the RunConfig this Run is associated with. Runs with the same RunConfig can be compared in the UI.

display_name

str

An optional display name of the Run.

metadata

Dict[str, str]

Any additional key-value pairs information the user wants to track.

run_config

The RunConfig associated with this Run object.

Supported Functions

dbnl.create_run

dbnl.close_run

dbnl.get_run

dbnl.set_run_as_baseline

Was this helpful?