We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 759d609 commit 129da8dCopy full SHA for 129da8d
custom_components/llmvision/timeline.py
@@ -710,8 +710,13 @@ async def create_event(
710
# Resolve category and label if not provided
711
if not label:
712
try:
713
+ query_text = " ".join(
714
+ part
715
+ for part in (title or "", description or "")
716
+ if part
717
+ )
718
(auto_category, auto_label) = await _get_category_and_label(
- self.hass, self._config_entry, label
719
+ self.hass, self._config_entry, query_text
720
)
721
if not category:
722
category = auto_category
0 commit comments