* densemixer plugin integration * update readme with usage docs * automatically find new integrations that aren't explicitly defined * make sure to import os
12 lines
181 B
Python
12 lines
181 B
Python
"""Pydantic models for DenseMixer plugin"""
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class DenseMixerArgs(BaseModel):
|
|
"""
|
|
Args for DenseMixer
|
|
"""
|
|
|
|
dense_mixer: bool = True
|