mirror of
https://github.com/vladmandic/sdnext.git
synced 2026-01-29 05:02:09 +03:00
8 lines
148 B
Python
8 lines
148 B
Python
from pydantic.dataclasses import dataclass
|
|
from ..config import BaseConfig
|
|
|
|
|
|
@dataclass
|
|
class ModelConfig(BaseConfig):
|
|
input_key: str = "image"
|