File size: 312 Bytes
7c6ce21 1ff26a6 7c6ce21 1ff26a6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
from dataclasses import dataclass
from typing import List, Dict, Union
@dataclass
class Model:
anchor: List[List[int]]
model: Dict[str, List[Dict[str, Union[Dict, List, int]]]]
@dataclass
class Download:
auto: bool
path: str
@dataclass
class Config:
model: Model
download: Download
|