smollm3-3B-logs / context_vars.py
eliebak's picture
eliebak HF Staff
Upload folder using huggingface_hub
6afafdd verified
raw
history blame contribute delete
444 Bytes
import contextvars
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from trackio.run import Run
current_run: contextvars.ContextVar["Run | None"] = contextvars.ContextVar(
"current_run", default=None
)
current_project: contextvars.ContextVar[str | None] = contextvars.ContextVar(
"current_project", default=None
)
current_server: contextvars.ContextVar[str | None] = contextvars.ContextVar(
"current_server", default=None
)