Spaces:
Sleeping
Sleeping
File size: 353 Bytes
90e2ac4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | from typing import Any, TypedDict
from gradio import FileData
class LogEntry(TypedDict):
project: str
run: str
metrics: dict[str, Any]
step: int | None
config: dict[str, Any] | None
class UploadEntry(TypedDict):
project: str
run: str | None
step: int | None
relative_path: str | None
uploaded_file: FileData
|