[UI] Added tts.picovoice component and assistant.picovoice icon. #395

Merged
blacklight merged 1 commits from 304-new-picovoice-integration into master 2024-05-02 03:09:50 +02:00
3 changed files with 16 additions and 0 deletions
Showing only changes of commit 61e466d8e2 - Show all commits

View File

@ -8,6 +8,9 @@
"assistant.google": {
"class": "fas fa-microphone-lines"
},
"assistant.picovoice": {
"class": "fas fa-microphone-lines"
},
"bluetooth": {
"class": "fab fa-bluetooth"
},

View File

@ -112,6 +112,7 @@ export default {
this.subscribe(this.response, null, 'platypush.message.event.assistant.ResponseEvent')
this.subscribe(this.conversationEnd, null,
'platypush.message.event.assistant.ConversationEndEvent',
'platypush.message.event.assistant.ResponseEndEvent',
'platypush.message.event.assistant.NoResponseEvent',
'platypush.message.event.assistant.ConversationTimeoutEvent')
},

View File

@ -0,0 +1,12 @@
<template>
<Panel plugin-name="tts.picovoice" />
</template>
<script>
import Panel from "@/components/panels/Tts/Panel";
export default {
name: "Tts",
components: {Panel}
}
</script>