Skip to content

Commit a35abc4

Browse files
committed
include version string
1 parent 6c1049a commit a35abc4

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

ovos_core/intent_services/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@
4040
from ovos_utils.metrics import Stopwatch
4141
from ovos_utils.thread_utils import create_daemon
4242
from padacioso.opm import PadaciosoPipeline as PadaciosoService
43+
from ovos_core.version import OVOS_VERSION_STR
44+
4345

4446
# TODO - to be dropped once pluginified
4547
# just a placeholder during alphas until https://github.com/OpenVoiceOS/ovos-core/pull/570
@@ -456,7 +458,8 @@ def _upload_match_data(utterance: str, intent: str, lang: str, match_data: dict,
456458
"intent": intent,
457459
"lang": lang,
458460
"match_data": json.dumps(match_data, ensure_ascii=False),
459-
"pipeline": "|".join(pipeline)
461+
"pipeline": "|".join(pipeline),
462+
"core_version": OVOS_VERSION_STR
460463
}
461464
for url in endpoints:
462465
try:

0 commit comments

Comments
 (0)