Allow config path to be passed to Rasa X
See original GitHub issueDescription of Problem:
Because users are able to pass custom config
paths to rasa train
, there should be CLI parity for the same.
Overview of the Solution:
Accept custom config path to override default config path, unless none is passed, then use default.
That, or allow for a config/
folder to be passed for all configuration-related files.
Examples (if relevant):
Mainly would help clean up some of the folder structure; without using Rasa X, you can have something like this:
project_dir
├── actions
├── config
├── config.yml
├── credentials.yml
└── endpoints.yml
├── data
├── nlu
└── stories
├── logs
└── domain.yml
and pass the config file by passing --config config/config.yml
instead of having the config files clutter up the root directory.
Blockers (if relevant): N/A
Definition of Done:
- Tests are added
- config path handling is changed
- Feature mentioned in the changelog
Issue Analytics
- State:
- Created 4 years ago
- Comments:7 (5 by maintainers)
Top Results From Across the Web
Configuration - Rasa
This page contains information about configuring a Rasa X / Enterprise deployment installed using rasactl .
Read more >Customize Your Deployment - Rasa
See the Rasa Helm chart to learn how to configure Rasa Open Source Channels for deployment that was deployed via the Rasa Helm...
Read more >Command Line Interface - Rasa
Command line interface for open source chatbot framework Rasa. Learn how to train, test and run your machine learning-based conversational ...
Read more >Connect Rasa Open Source to Rasa X
The command rasactl connect rasa starts a local Rasa Open Source server using the rasa command available in whichever Python environment is ...
Read more >Model Configuration - Rasa
Make sure to specify the language key in your config.yml file with the 2-letter ISO language code. Example config.yml file:.
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
The original request is now implemented:
@wochinge , what do you think about implementation of the other command options:
I think that’s a good idea; there should be absolute parity between the
rasa train
command options, of which candidates are:Not sure if this is something we’d want to add to the CLI or just abstract into another config file, though.