We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
есть кастомный навык и интент для него:
# tv_search root: %lemma [найди на телевизоре $room $text] [поищи на телевизоре $room $text] slots: room: type: Room source: $room text: source: $text $room: $Room $text: .+
в результате посылается запрос вида:
Request: { "request": { "command": "найти на телевизоре в гостиной аватар", "original_utterance": "найти на телевизоре в гостиной аватар", "nlu": { "tokens": [ "найти", "на", "телевизоре", "в", "гостиной", "аватар" ], "entities": [], "intents": { "YANDEX.BOOK.SEARCH": { "slots": { "book": { "type": "string", "tokens": { "start": 1, "end": 6 }, "value": "на телевизоре в гостиной аватар" } } }, "tv_search": { "slots": { "text": { "type": "YANDEX.STRING", "tokens": { "start": 5, "end": 6 }, "value": "аватар" }, "room": { "type": "Room", "tokens": { "start": 3, "end": 5 }, "value": "livingroom" } } } }
но в HA генерится событие только с первым интентом (не моим):
event_type: yandex_intent data: text: найди на телевизоре в гостиной аватар command: найди на телевизоре в гостиной аватар intent: YANDEX.BOOK.SEARCH book: на телевизоре в гостиной аватар origin: LOCAL time_fired: "2023-02-18T19:15:48.225861+00:00" context: id: 01GSJZ8CW12AWWDJ8RTK3XQRP1 parent_id: null user_id: null
проблема в этой строчке:
YandexDialogs/custom_components/yandex_dialogs/__init__.py
Line 142 in 171a30d
The text was updated successfully, but these errors were encountered:
Предлагаете два события создавать?
Sorry, something went wrong.
No branches or pull requests
есть кастомный навык и интент для него:
в результате посылается запрос вида:
но в HA генерится событие только с первым интентом (не моим):
проблема в этой строчке:
YandexDialogs/custom_components/yandex_dialogs/__init__.py
Line 142 in 171a30d
The text was updated successfully, but these errors were encountered: