Was this helpful?
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
id
str
The ID of the Run. Run ID starts with the prefix run_
run_
project_id
run_config_id
display_name
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 ID of the this Run is associated with.
The ID of the this Run is associated with. Runs with the same RunConfig can be compared in the UI.
The associated with this Run object.
dbnl.create_run
dbnl.close_run
dbnl.get_run
dbnl.set_run_as_baseline
RunConfig