from dataclasses import dataclass | |
from typing import List, Dict, Union | |
class Model: | |
anchor: List[List[int]] | |
model: Dict[str, List[Dict[str, Union[Dict, List, int]]]] | |
class Download: | |
auto: bool | |
path: str | |
class Config: | |
model: Model | |
download: Download | |