Merge pull request '[UI] Added `tts.picovoice` component and `assistant.picovoice` icon.' (#395) from 304-new-picovoice-integration into master
continuous-integration/drone/push Build is passing Details

Reviewed-on: #395
This commit is contained in:
Fabio Manganiello 2024-05-02 03:09:49 +02:00
commit add5d398b1
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>