Source code for cellmil.interfaces.StatsPrinterConfig

from pydantic import BaseModel, Field

[docs]class StatsPrinterConfig(BaseModel): """Configuration for generating statistics reports""" team : str = Field(..., description="Team name where the project belongs in wandb") projects : list[str] = Field(..., description="Project/s name where data is allocated in wandb")
[docs] class Config: arbitrary_types_allowed = True