`picovoice` -> `assistant.picovoice`

This commit is contained in:
Fabio Manganiello 2024-04-08 13:26:44 +02:00
parent 0b8e1bb81b
commit c7094c7886
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
7 changed files with 4 additions and 2 deletions

View File

@ -8,7 +8,7 @@ from ._state import AssistantState
# pylint: disable=too-many-ancestors # pylint: disable=too-many-ancestors
class PicovoicePlugin(AssistantPlugin, RunnablePlugin): class AssistantPicovoicePlugin(AssistantPlugin, RunnablePlugin):
""" """
A voice assistant that runs on your device, based on the `Picovoice A voice assistant that runs on your device, based on the `Picovoice
<https://picovoice.ai/>`_ engine. <https://picovoice.ai/>`_ engine.

View File

@ -1,5 +1,5 @@
manifest: manifest:
package: platypush.plugins.picovoice package: platypush.plugins.assistant.picovoice
type: plugin type: plugin
events: events:
- platypush.message.event.assistant.ConversationEndEvent - platypush.message.event.assistant.ConversationEndEvent
@ -17,6 +17,7 @@ manifest:
pip: pip:
- pvcheetah - pvcheetah
- pvleopard - pvleopard
- pvorca
- pvporcupine - pvporcupine
- pvrhino - pvrhino
- sounddevice - sounddevice

View File

@ -84,6 +84,7 @@ mock_imports = [
"psutil", "psutil",
"pvcheetah", "pvcheetah",
"pvleopard", "pvleopard",
"pvorca",
"pvporcupine", "pvporcupine",
"pvrhino", "pvrhino",
"pyHS100", "pyHS100",