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
Command such as
python3 -m script.intentfest sample --language en --intents HassLightSet
generates sentences disregarding the domain/device_class of the entity. Example:
{"intent": "HassLightSet", "text": "set the Powerwall stored energy brightness to 48%"}
Powerwall stored energy is a sensor classified as energy_storage:
Powerwall stored energy
energy_storage
- name: "Powerwall stored energy" id: "sensor.powerwall_stored_energy" state: "6" attributes: device_class: energy_storage unit_of_measurement: "kWh"
and the generate action would be ignored:
$ python3 -m script.intentfest parse --language en --sentence 'set the Powerwall stored energy brightness to 48%' $ (empty output)
The text was updated successfully, but these errors were encountered:
synesthesiam
No branches or pull requests
Command such as
generates sentences disregarding the domain/device_class of the entity. Example:
Powerwall stored energy
is a sensor classified asenergy_storage
:and the generate action would be ignored:
$ python3 -m script.intentfest parse --language en --sentence 'set the Powerwall stored energy brightness to 48%' $ (empty output)
The text was updated successfully, but these errors were encountered: