forked from platypush/platypush
[UI] Added tts.picovoice
component and assistant.picovoice
icon.
This commit is contained in:
parent
4ac73837f6
commit
61e466d8e2
3 changed files with 16 additions and 0 deletions
|
@ -8,6 +8,9 @@
|
||||||
"assistant.google": {
|
"assistant.google": {
|
||||||
"class": "fas fa-microphone-lines"
|
"class": "fas fa-microphone-lines"
|
||||||
},
|
},
|
||||||
|
"assistant.picovoice": {
|
||||||
|
"class": "fas fa-microphone-lines"
|
||||||
|
},
|
||||||
"bluetooth": {
|
"bluetooth": {
|
||||||
"class": "fab fa-bluetooth"
|
"class": "fab fa-bluetooth"
|
||||||
},
|
},
|
||||||
|
|
|
@ -112,6 +112,7 @@ export default {
|
||||||
this.subscribe(this.response, null, 'platypush.message.event.assistant.ResponseEvent')
|
this.subscribe(this.response, null, 'platypush.message.event.assistant.ResponseEvent')
|
||||||
this.subscribe(this.conversationEnd, null,
|
this.subscribe(this.conversationEnd, null,
|
||||||
'platypush.message.event.assistant.ConversationEndEvent',
|
'platypush.message.event.assistant.ConversationEndEvent',
|
||||||
|
'platypush.message.event.assistant.ResponseEndEvent',
|
||||||
'platypush.message.event.assistant.NoResponseEvent',
|
'platypush.message.event.assistant.NoResponseEvent',
|
||||||
'platypush.message.event.assistant.ConversationTimeoutEvent')
|
'platypush.message.event.assistant.ConversationTimeoutEvent')
|
||||||
},
|
},
|
||||||
|
|
|
@ -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>
|
Loading…
Reference in a new issue