trackio-71827 / typehints.py
saba9's picture
saba9 HF Staff
Upload folder using huggingface_hub
b77494e verified
raw
history blame contribute delete
282 Bytes
from typing import Any, TypedDict
from gradio import FileData
class LogEntry(TypedDict):
project: str
run: str
metrics: dict[str, Any]
step: int | None
class UploadEntry(TypedDict):
project: str
run: str
step: int | None
uploaded_file: FileData