Spaces:
Sleeping
Sleeping
File size: 142 Bytes
1e39870 | 1 2 3 4 5 6 7 8 9 | from typing import Any, TypedDict
class LogEntry(TypedDict):
project: str
run: str
metrics: dict[str, Any]
step: int | None
|