Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion neon_core/configuration/neon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ enable_old_audioservice: True
# Plugin Configuration
utterance_transformers:
neon_utterance_translator_plugin:
active: True
active: False
enable_detector: True
neon_utterance_normalizer_plugin:
active: True
Expand Down
4 changes: 3 additions & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
ovos-core[lgpl]~=0.2


neon-utils[network]~=1.14
ovos-utils~=0.0,>=0.0.38
ovos-bus-client~=0.0,>=0.0.10
Expand All @@ -14,6 +13,9 @@ ovos-classifiers
# TODO: Remove when run_neon.py is deprecated
psutil~=5.6

# TODO: Patching `setuptools` imports
setuptools<82.0

click~=8.0
click-default-group~=1.2

Expand Down
8 changes: 4 additions & 4 deletions requirements/skills_default.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
skill-ddg~=0.0.2
neon-skill-alerts~=3.0,>=3.0.1
neon-skill-alerts~=3.0,>=3.0.2a1
neon-skill-caffeinewiz~=2.0,>=2.0.1a3
neon-skill-data_controls~=2.0,>=2.0.3
neon-skill-fallback_wolfram_alpha~=3.0
neon-skill-personal~=1.0,>=1.0.4a2
neon-skill-speak~=2.0,>=2.0.4a1
neon-skill-speed_test~=1.0,>=1.0.5a2
neon-skill-spelling~=1.1,>=1.1.1
neon-skill-speed_test~=1.0,>=1.0.5a3
neon-skill-spelling~=1.1,>=1.1.2a2
neon-skill-stock~=2.0,>=2.0.1a2
neon-skill-support_helper~=1.2,>=1.2.5a1
neon-skill-support_helper~=1.2,>=1.2.5a2
neon-skill-user_settings~=1.1
neon-skill-weather~=3.1,>=3.1.1a2
ovos-skill-wikipedia~=0.0
Expand Down
4 changes: 4 additions & 0 deletions test/test_skills_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,10 @@ def setUpClass(cls) -> None:
importlib.reload(ovos_config)
assert ovos_config.config.Configuration.default.path == meta['default_config_path']

# Patch configuration
ovos_config.config.Configuration()[
'utterance_transformers']['neon_utterance_translator_plugin'] = {"active": True}

from neon_core.skills.intent_service import NeonIntentService
cls.intent_service = NeonIntentService(cls.bus)
assert set(cls.intent_service.config['utterance_transformers'].keys()) \
Expand Down
Loading