extended_openai_conversation
extended_openai_conversation copied to clipboard
Trigger automation with voice
I was wondering if it is possible to trigger an automation with using Extended Open AI as your conversation agent?
Which one do you mean?
- automation trigger → conversation agent
- conversation agent → automation
If what you asked is the first one, you can achieve it by conversation.process
service.
Which one do you mean?
1. automation trigger → conversation agent 2. conversation agent → automation
If what you asked is the first one, you can achieve it by
conversation.process
service.
I'm trying to get the second one to work.
You can use script
function to change state of entities or trigger events like below.
- spec:
name: trigger_event
description: trigger event
parameters:
type: object
properties:
dummy:
type: string
description: Nothing
function:
type: script
sequence:
- event: "your_event_name"
event_data: {}
You can modify name and description of spec, and event of function to fit your case. Then add event trigger to your automation.
Closing the issue. Feel free to reopen it.