The intention of this repository is to provide an interface for the rhapsody hackathon participants to configure their skills for the configurations that are not available/exposed in the SDP - skill development platform yet.
In the future all of the things you can do here should and will be consolidated into the SDP.
For the course of this hackathon we decided only to expose the RegexNLU mechanism to build skills. In case you want to use a LUIS model please contact the organisational team in the slack.
Please prefix your intents in the domain.json
, answer-regex.json
and regex.json
with your TEAM_XY_
identifier.
Fork this repo, and create a pull request (after rebasing your master branch with the master branch of this repository) in your
TEAM_XY_
folder.
Create the regex NLU for your usecase like so:
[
{
"name": "TEAM_XY_<INTENT_NAME>",
"pattern": "you want to catch everything after this sentence (.*)",
"entities": ["caught_stuff"]
}
]
Create your domain context metadata using dcm:
Same as above. Just fill out answer-regex.json out.
This project is licensed under the GPL-3 license.