registry.SessionInfo
registry.SessionInfo(
session_id,
experiment_name,
created_at,
template_path,
template_hash,
simulation,
total_jobs,
total_replicates,
status,
metadata,
)Information about a sweep session.
Attributes
| Name | Type | Description |
|---|---|---|
| session_id | str | Unique session identifier. |
| experiment_name | str | None | Name of the experiment for path templates. |
| created_at | datetime | When the session was created. |
| template_path | str | None | Path to the template file (if any). |
| template_hash | str | None | Hash of the template content. |
| simulation | str | None | Name of the simulation. |
| total_jobs | int | None | Total number of job configurations. |
| total_replicates | int | None | Total number of replicates across all jobs. |
| status | str | Session status (pending, running, completed, failed). |
| metadata | dict[str, Any] | None | Additional metadata as a dictionary. |