[UI] Added `tts.picovoice` component and `assistant.picovoice` icon.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Fabio Manganiello 2024-05-02 03:07:47 +02:00
parent 4ac73837f6
commit 61e466d8e2
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
3 changed files with 16 additions and 0 deletions

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>