-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from Watson-Personal-Assistant/pre-release
Merging pre-release branch with Master (17-May release)
- Loading branch information
Showing
11 changed files
with
185 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# | ||
PORT=10011 | ||
|
||
# Application (expertise) name | ||
# Application (skill) name | ||
APP_NAME= | ||
|
||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
"en-US" | ||
], | ||
"nlu": [ | ||
"skill", "regexp", "wcs" | ||
"skill", "regexp" | ||
], | ||
"tags": [ | ||
"hello world" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
|
||
---------------------------------------- Skill Debugger Tool --------------------------------------------------- | ||
|
||
The Skill Debugger Tool is a standalone app that can be used to converse with your skill when your are running | ||
it locally, it handles all requests to the skill and manages the context. | ||
|
||
|
||
-- Usage -- | ||
|
||
1. Run your skill (using npm start) | ||
2. Open the Skill Debugger Tool file according to your operating system | ||
3. Make sure the skill url is set to the correct url | ||
3.1 The default skill url is http://localhost:10011 | ||
3.2 If you would like to change the url go to File -> Skill url | ||
4. If your skill uses authentication make sure to add the skill key, go to File -> Skill key | ||
5. In the Converse request box enter your request | ||
5.1 If you would like to add/change context for your request you can do so in the Context box | ||
6. Click Submit request to send your request to the skill | ||
7. See the result | ||
7.1 You can toggle between the Converse response and the Evaluation response | ||
7.2 The context will be updated automatically | ||
7.3 All previous requests are shown in the Previous requests box - the Previous requests list can be cleared, | ||
just go to File -> Clear previous requests |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"tests": | ||
[ | ||
{ | ||
"testDescription": "Testing hello world", | ||
"utterance": "Hello", | ||
"intent" : "hello-world", | ||
"entities" : [{"entity":"hello", "value": "world"}], | ||
"expectedResponse": "Hello world" | ||
} | ||
] | ||
} |