fboerncke / hackathon-conf

This repository is for enabling external developers to configure some of the globally scoped skill configurations of their skill which are not exposed through a GUI yet.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hackathon-conf

Motivation

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.

Important

Please prefix your intents in the domain.json, answer-regex.json and regex.json with your TEAM_XY_ identifier.

How to use

I want to build a simple skill without a reprompt model

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:

asciicast

I want to build a simple skill with a reprompt model

Same as above. Just fill out answer-regex.json out.

License

This project is licensed under the GPL-3 license.

About

This repository is for enabling external developers to configure some of the globally scoped skill configurations of their skill which are not exposed through a GUI yet.

License:GNU General Public License v3.0