From a3eb18309a2e266cf95f371d02f4e766ea37f59c Mon Sep 17 00:00:00 2001 From: Allen Porter Date: Sun, 4 Aug 2024 05:46:05 +0000 Subject: [PATCH] Update the model config with additional model card information --- home_assistant_datasets/data_model.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/home_assistant_datasets/data_model.py b/home_assistant_datasets/data_model.py index ad2e8b66..8a049ea4 100644 --- a/home_assistant_datasets/data_model.py +++ b/home_assistant_datasets/data_model.py @@ -14,6 +14,12 @@ 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.""" @@ -21,7 +27,7 @@ class ModelConfig: """The configuration entry options.""" version: int | None = None - """The version nnumber of the config entry.""" + """The version number of the config entry.""" @dataclass