Skip to content

Commit

Permalink
Update the model config with additional model card information
Browse files Browse the repository at this point in the history
  • Loading branch information
allenporter committed Aug 4, 2024
1 parent e13a137 commit a3eb183
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion home_assistant_datasets/data_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,20 @@ class ModelConfig:
domain: str
"""The domain under evaluation."""

description: str
"""A detailed description of the model tested."""

url: list[str]
"""A list of relevant urls for the model and its serving infrastructure."""

config_entry_data: dict[str, Any] | None = None
"""The configuration entry data."""

config_entry_options: dict[str, Any] | None = None
"""The configuration entry options."""

version: int | None = None
"""The version nnumber of the config entry."""
"""The version number of the config entry."""


@dataclass
Expand Down

0 comments on commit a3eb183

Please sign in to comment.