mirror of
https://github.com/acon96/home-llm.git
synced 2026-01-08 05:14:02 -05:00
add is alias and fix bug report template
This commit is contained in:
8
.github/ISSUE_TEMPLATE/bug_report.md
vendored
8
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@@ -7,7 +7,13 @@ assignees: ''
|
||||
|
||||
---
|
||||
|
||||
***Please do not report issues with the model generating incorrect output. This includes any instance where the model responds with `Failed to run: ...` or outputs badly formatted responses. If you are having trouble getting the correct output from the model, please open a Discussion thread instead.***
|
||||
<!--
|
||||
|
||||
Please do not report issues with the model generating incorrect output. This includes any instance where the model responds with `Failed to run: ...` or outputs badly formatted responses. If you are having trouble getting the correct output from the model, please open a Discussion thread instead.
|
||||
|
||||
If you recently updated Home Assistant to a newly released version, please indicate that in your report.
|
||||
|
||||
-->
|
||||
|
||||
**Describe the bug**
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
@@ -672,7 +672,8 @@ class LocalLLMAgent(AbstractConversationAgent):
|
||||
"state": state,
|
||||
"attributes": exposed_attributes,
|
||||
"area_name": attributes.get("area_name"),
|
||||
"area_id": attributes.get("area_id")
|
||||
"area_id": attributes.get("area_id"),
|
||||
"is_alias": False
|
||||
})
|
||||
if "aliases" in attributes:
|
||||
for alias in attributes["aliases"]:
|
||||
@@ -683,7 +684,8 @@ class LocalLLMAgent(AbstractConversationAgent):
|
||||
"state": state,
|
||||
"attributes": exposed_attributes,
|
||||
"area_name": attributes.get("area_name"),
|
||||
"area_id": attributes.get("area_id")
|
||||
"area_id": attributes.get("area_id"),
|
||||
"is_alias": True
|
||||
})
|
||||
|
||||
if llm_api:
|
||||
|
||||
Reference in New Issue
Block a user