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_
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.
Supported Functions
Was this helpful?