Environment information from evaluation execution. Records the hardware and software environment details from when the evaluation was performed, enabling reproducibility analysis.
| 71 | |
| 72 | |
| 73 | class Environment(BaseModelWithDocstrings): |
| 74 | """Environment information from evaluation execution. |
| 75 | |
| 76 | Records the hardware and software environment details from when |
| 77 | the evaluation was performed, enabling reproducibility analysis. |
| 78 | """ |
| 79 | |
| 80 | hardware: NonEmptyString |
| 81 | """Hardware identifier where the evaluation was performed (e.g., 'NVIDIA_H100').""" |
| 82 | libs: dict[str, str] = Field(default_factory=dict) |
| 83 | """Dictionary of library names to version strings used during evaluation.""" |
| 84 | |
| 85 | |
| 86 | class EvaluationStatus(str, Enum): |