mirror of
https://github.com/vladmandic/automatic
synced 2026-08-27 07:31:01 +02:00
feeafc6286
Co-authored-by: Copilot <copilot@github.com> Signed-off-by: Vladimir Mandic <mandic00@live.com>
8 lines
150 B
Python
8 lines
150 B
Python
from pydantic.dataclasses import dataclass
|
|
from lbm.config import BaseConfig
|
|
|
|
|
|
@dataclass
|
|
class ModelConfig(BaseConfig):
|
|
input_key: str = "image"
|