You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i got your addon working in home assistant and its doing very well.
now i want to dive deeper into it.
is there a way to add my own function like in the "extended_openai_conversation" addon?
there you have a window to set your own function.
for example:
- spec:
name: execute_chore
description: Use this function to execute a chore in Home Assistant.
parameters:
type: object
properties:
chore_id:
type: string
description: The ID of the chore to be executed.
required:
- chore_id
function:
type: script
sequence:
- service: script.execute_chore
data:
chore_id: "{{ chore_id }}"
and then add to your configuration.yaml:
script:
execute_chore:
alias: "Execute Chore"
sequence:
- service: grocy.execute_chore
data:
chore_id: "{{ chore_id }}"
best regards roy
The text was updated successfully, but these errors were encountered:
hello,
i got your addon working in home assistant and its doing very well.
now i want to dive deeper into it.
is there a way to add my own function like in the "extended_openai_conversation" addon?
there you have a window to set your own function.
for example:
best regards roy
The text was updated successfully, but these errors were encountered: