├── .coveragerc ├── .github ├── dependabot.yml └── workflows │ ├── build_tests.yml │ ├── conventional-label.yaml │ ├── coverage.yml │ ├── gh_pages_coverage.yml │ ├── license_tests.yml │ ├── pipaudit.yml │ ├── publish_stable.yml │ ├── release_workflow.yml │ └── unit_tests.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── ovos_core ├── __init__.py ├── __main__.py ├── intent_services │ ├── __init__.py │ ├── converse_service.py │ ├── fallback_service.py │ ├── locale │ │ ├── ca-es │ │ │ ├── global_stop.intent │ │ │ └── stop.intent │ │ ├── da-dk │ │ │ ├── global_stop.intent │ │ │ └── stop.intent │ │ ├── de-de │ │ │ ├── global_stop.intent │ │ │ └── stop.intent │ │ ├── en-us │ │ │ ├── global_stop.intent │ │ │ └── stop.intent │ │ ├── es-es │ │ │ ├── global_stop.intent │ │ │ └── stop.intent │ │ ├── eu │ │ │ ├── global_stop.intent │ │ │ └── stop.intent │ │ ├── fa-ir │ │ │ ├── global_stop.intent │ │ │ └── stop.intent │ │ ├── fr-fr │ │ │ ├── global_stop.intent │ │ │ └── stop.intent │ │ ├── gl-es │ │ │ ├── global_stop.intent │ │ │ └── stop.intent │ │ ├── it-it │ │ │ ├── global_stop.intent │ │ │ └── stop.intent │ │ ├── nl-be │ │ │ └── stop.intent │ │ ├── nl-nl │ │ │ ├── global_stop.intent │ │ │ └── stop.intent │ │ ├── pl-pl │ │ │ ├── global_stop.intent │ │ │ └── stop.intent │ │ ├── pt-br │ │ │ ├── global_stop.intent │ │ │ └── stop.intent │ │ ├── pt-pt │ │ │ ├── global_stop.intent │ │ │ └── stop.intent │ │ └── uk-ua │ │ │ ├── global_stop.intent │ │ │ └── stop.intent │ ├── service.py │ └── stop_service.py ├── skill_installer.py ├── skill_manager.py ├── transformers.py └── version.py ├── requirements ├── lgpl.txt ├── mycroft.txt ├── plugins.txt ├── requirements.txt ├── skills-audio.txt ├── skills-ca.txt ├── skills-desktop.txt ├── skills-en.txt ├── skills-essential.txt ├── skills-extra.txt ├── skills-gl.txt ├── skills-gui.txt ├── skills-internet.txt ├── skills-media.txt ├── skills-pt.txt └── tests.txt ├── scripts ├── prepare_translations.py └── sync_translations.py ├── setup.py ├── test ├── __init__.py ├── end2end │ ├── __init__.py │ ├── test_activate.py │ ├── test_adapt.py │ ├── test_cancel_plugin.py │ ├── test_converse.py │ ├── test_fallback.py │ ├── test_lang_detect.py │ ├── test_no_skills.py │ ├── test_padatious.py │ └── test_stop.py └── unittests │ ├── __init__.py │ ├── test_intent_service.py │ ├── test_manager.py │ ├── test_skill │ ├── __init__.py │ └── dialog │ │ └── en-us │ │ └── what do you want.dialog │ ├── test_skill_installer.py │ ├── test_skill_manager.py │ └── xformers.py └── translations ├── ca-es └── intents.json ├── da-dk └── intents.json ├── de-de └── intents.json ├── en-us └── intents.json ├── es-es └── intents.json ├── eu └── intents.json ├── fa-IR └── intents.json ├── fr-fr └── intents.json ├── gl-es └── intents.json ├── it-it └── intents.json ├── nl-NL └── intents.json ├── nl-be └── intents.json ├── nl-nl └── intents.json ├── pl-pl └── intents.json ├── pt-br └── intents.json ├── pt-pt └── intents.json └── uk-ua └── intents.json /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | relative_files = true -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/.github/workflows/build_tests.yml -------------------------------------------------------------------------------- /.github/workflows/conventional-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/.github/workflows/conventional-label.yaml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/gh_pages_coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/.github/workflows/gh_pages_coverage.yml -------------------------------------------------------------------------------- /.github/workflows/license_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/.github/workflows/license_tests.yml -------------------------------------------------------------------------------- /.github/workflows/pipaudit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/.github/workflows/pipaudit.yml -------------------------------------------------------------------------------- /.github/workflows/publish_stable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/.github/workflows/publish_stable.yml -------------------------------------------------------------------------------- /.github/workflows/release_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/.github/workflows/release_workflow.yml -------------------------------------------------------------------------------- /.github/workflows/unit_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/.github/workflows/unit_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/README.md -------------------------------------------------------------------------------- /ovos_core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/__init__.py -------------------------------------------------------------------------------- /ovos_core/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/__main__.py -------------------------------------------------------------------------------- /ovos_core/intent_services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/__init__.py -------------------------------------------------------------------------------- /ovos_core/intent_services/converse_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/converse_service.py -------------------------------------------------------------------------------- /ovos_core/intent_services/fallback_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/fallback_service.py -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/ca-es/global_stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/ca-es/global_stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/ca-es/stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/ca-es/stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/da-dk/global_stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/da-dk/global_stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/da-dk/stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/da-dk/stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/de-de/global_stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/de-de/global_stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/de-de/stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/de-de/stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/en-us/global_stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/en-us/global_stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/en-us/stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/en-us/stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/es-es/global_stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/es-es/global_stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/es-es/stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/es-es/stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/eu/global_stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/eu/global_stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/eu/stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/eu/stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/fa-ir/global_stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/fa-ir/global_stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/fa-ir/stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/fa-ir/stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/fr-fr/global_stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/fr-fr/global_stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/fr-fr/stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/fr-fr/stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/gl-es/global_stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/gl-es/global_stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/gl-es/stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/gl-es/stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/it-it/global_stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/it-it/global_stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/it-it/stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/it-it/stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/nl-be/stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/nl-be/stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/nl-nl/global_stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/nl-nl/global_stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/nl-nl/stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/nl-nl/stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/pl-pl/global_stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/pl-pl/global_stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/pl-pl/stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/pl-pl/stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/pt-br/global_stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/pt-br/global_stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/pt-br/stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/pt-br/stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/pt-pt/global_stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/pt-pt/global_stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/pt-pt/stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/pt-pt/stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/uk-ua/global_stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/uk-ua/global_stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/locale/uk-ua/stop.intent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/locale/uk-ua/stop.intent -------------------------------------------------------------------------------- /ovos_core/intent_services/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/service.py -------------------------------------------------------------------------------- /ovos_core/intent_services/stop_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/intent_services/stop_service.py -------------------------------------------------------------------------------- /ovos_core/skill_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/skill_installer.py -------------------------------------------------------------------------------- /ovos_core/skill_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/skill_manager.py -------------------------------------------------------------------------------- /ovos_core/transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/transformers.py -------------------------------------------------------------------------------- /ovos_core/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/ovos_core/version.py -------------------------------------------------------------------------------- /requirements/lgpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/requirements/lgpl.txt -------------------------------------------------------------------------------- /requirements/mycroft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/requirements/mycroft.txt -------------------------------------------------------------------------------- /requirements/plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/requirements/plugins.txt -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/requirements/requirements.txt -------------------------------------------------------------------------------- /requirements/skills-audio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/requirements/skills-audio.txt -------------------------------------------------------------------------------- /requirements/skills-ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/requirements/skills-ca.txt -------------------------------------------------------------------------------- /requirements/skills-desktop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/requirements/skills-desktop.txt -------------------------------------------------------------------------------- /requirements/skills-en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/requirements/skills-en.txt -------------------------------------------------------------------------------- /requirements/skills-essential.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/requirements/skills-essential.txt -------------------------------------------------------------------------------- /requirements/skills-extra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/requirements/skills-extra.txt -------------------------------------------------------------------------------- /requirements/skills-gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/requirements/skills-gl.txt -------------------------------------------------------------------------------- /requirements/skills-gui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/requirements/skills-gui.txt -------------------------------------------------------------------------------- /requirements/skills-internet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/requirements/skills-internet.txt -------------------------------------------------------------------------------- /requirements/skills-media.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/requirements/skills-media.txt -------------------------------------------------------------------------------- /requirements/skills-pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/requirements/skills-pt.txt -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /scripts/prepare_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/scripts/prepare_translations.py -------------------------------------------------------------------------------- /scripts/sync_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/scripts/sync_translations.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/end2end/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/end2end/test_activate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/test/end2end/test_activate.py -------------------------------------------------------------------------------- /test/end2end/test_adapt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/test/end2end/test_adapt.py -------------------------------------------------------------------------------- /test/end2end/test_cancel_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/test/end2end/test_cancel_plugin.py -------------------------------------------------------------------------------- /test/end2end/test_converse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/test/end2end/test_converse.py -------------------------------------------------------------------------------- /test/end2end/test_fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/test/end2end/test_fallback.py -------------------------------------------------------------------------------- /test/end2end/test_lang_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/test/end2end/test_lang_detect.py -------------------------------------------------------------------------------- /test/end2end/test_no_skills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/test/end2end/test_no_skills.py -------------------------------------------------------------------------------- /test/end2end/test_padatious.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/test/end2end/test_padatious.py -------------------------------------------------------------------------------- /test/end2end/test_stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/test/end2end/test_stop.py -------------------------------------------------------------------------------- /test/unittests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unittests/test_intent_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/test/unittests/test_intent_service.py -------------------------------------------------------------------------------- /test/unittests/test_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/test/unittests/test_manager.py -------------------------------------------------------------------------------- /test/unittests/test_skill/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/test/unittests/test_skill/__init__.py -------------------------------------------------------------------------------- /test/unittests/test_skill/dialog/en-us/what do you want.dialog: -------------------------------------------------------------------------------- 1 | What do you want 2 | -------------------------------------------------------------------------------- /test/unittests/test_skill_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/test/unittests/test_skill_installer.py -------------------------------------------------------------------------------- /test/unittests/test_skill_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/test/unittests/test_skill_manager.py -------------------------------------------------------------------------------- /test/unittests/xformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/test/unittests/xformers.py -------------------------------------------------------------------------------- /translations/ca-es/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/ca-es/intents.json -------------------------------------------------------------------------------- /translations/da-dk/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/da-dk/intents.json -------------------------------------------------------------------------------- /translations/de-de/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/de-de/intents.json -------------------------------------------------------------------------------- /translations/en-us/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/en-us/intents.json -------------------------------------------------------------------------------- /translations/es-es/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/es-es/intents.json -------------------------------------------------------------------------------- /translations/eu/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/eu/intents.json -------------------------------------------------------------------------------- /translations/fa-IR/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/fa-IR/intents.json -------------------------------------------------------------------------------- /translations/fr-fr/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/fr-fr/intents.json -------------------------------------------------------------------------------- /translations/gl-es/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/gl-es/intents.json -------------------------------------------------------------------------------- /translations/it-it/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/it-it/intents.json -------------------------------------------------------------------------------- /translations/nl-NL/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/nl-NL/intents.json -------------------------------------------------------------------------------- /translations/nl-be/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/nl-be/intents.json -------------------------------------------------------------------------------- /translations/nl-nl/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/nl-nl/intents.json -------------------------------------------------------------------------------- /translations/pl-pl/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/pl-pl/intents.json -------------------------------------------------------------------------------- /translations/pt-br/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/pt-br/intents.json -------------------------------------------------------------------------------- /translations/pt-pt/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/pt-pt/intents.json -------------------------------------------------------------------------------- /translations/uk-ua/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenVoiceOS/ovos-core/HEAD/translations/uk-ua/intents.json --------------------------------------------------------------------------------