test_586 / trackio /typehints.py
abidlabs's picture
abidlabs HF Staff
Upload folder using huggingface_hub
973703c verified
Raw
History Blame Contribute Delete
1.11 kB
from typing import Any, NewType, TypedDict
from gradio_client import FileData
Sha256Digest = NewType("Sha256Digest", str)
class ManifestEntry(TypedDict):
path: str
digest: Sha256Digest
size: int
Manifest = list[ManifestEntry]
class LogEntry(TypedDict, total=False):
project: str
run: str
run_id: str | None
metrics: dict[str, Any]
step: int | None
config: dict[str, Any] | None
log_id: str | None
class SystemLogEntry(TypedDict, total=False):
project: str
run: str
run_id: str | None
metrics: dict[str, Any]
timestamp: str
log_id: str | None
class AlertEntry(TypedDict, total=False):
project: str
run: str
run_id: str | None
title: str
text: str | None
level: str
step: int | None
timestamp: str
alert_id: str | None
class UploadEntry(TypedDict):
project: str
run: str | None
run_id: str | None
step: int | None
relative_path: str | None
uploaded_file: FileData
class ArtifactBlobUploadEntry(TypedDict):
project: str
digest: Sha256Digest
uploaded_file: FileData