rasa x removes "triggers" from intents in domain.yml
See original GitHub issueRasa version: 1.1.4
Rasa X version (docker): 0.19.5
Python version: Python 3.6.9
Operating system (windows, osx, …): Linux/Docker
Issue:
Hi, working with Rasa X the intent “triggers” are removed in the domain.yml
Content of domain file before opening/saving with rasa x:
intents:
- affirm
- requirements:
triggers: action_requirements
- requirements_age:
triggers: action_apprenticeship_age
- start:
triggers: action_start_date
Content of domain file after opening/saving with rasa x:
intents:
- affirm
- requirements
- requirements_age
- start
Even if I try to add the triggers back via the Rasa x UI, after saving all triggers are gone again.
Thanks for your help! 😃
Issue Analytics
- State:
- Created 4 years ago
- Reactions:3
- Comments:7 (6 by maintainers)
Top Results From Across the Web
Domain - Rasa
The domain defines the universe in which your assistant operates. It specifies the intents, entities, slots, responses, forms, and actions your bot should...
Read more >Rasa X not given correct actions for properly detected intents
Rasa X is detecting the intents properly however not giving the actions appropriate to those intents and rather giving default fallback ...
Read more >Version Migration Guide - Rasa
This page contains information about changes between major versions and how you can migrate from one version to another.
Read more >Forms - Rasa
Follow a rule-based process of information gathering using forms in open source bot framework Rasa.
Read more >Policies - Rasa
You can set the max_history by passing it to your policy in the policy configuration in your config.yml . The default value is...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@creadoit @ricwo there was a very similar issue that caused intent properties, most noticeably
triggers
not to be saved when a domain was exported from interactive learning. This fix is in version 1.1.5 and up but was not in 1.1.4 yet.mhm, but if the triggers are in the domain, shouldn’t they just stay there instead of being removed?