from typing import TypedDict class DesiredWorkerLabel(TypedDict, total=False): value: str | int required: bool | None = None weight: int | None = None comparator: int | None = ( None # _ClassVar[WorkerLabelComparator] TODO figure out type )
![]() |
index : gn-ai | |
A repository for GeneNetwork's AI tool development |
aboutsummaryrefslogtreecommitdiff |
from typing import TypedDict class DesiredWorkerLabel(TypedDict, total=False): value: str | int required: bool | None = None weight: int | None = None comparator: int | None = ( None # _ClassVar[WorkerLabelComparator] TODO figure out type )