forked from MycroftAI/skill-spelling
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
80 additions
and
11 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
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
neon-utils~=1.0 | ||
ovos_utils~=0.0.28 | ||
ovos-utils~=0.0, >=0.0.28 | ||
ovos-workshop~=0.0.15 | ||
adapt-parser<2.0,>=0.5 |
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 @@ | ||
neon-minerva[padatious]~=0.2 |
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 |
---|---|---|
|
@@ -89,6 +89,7 @@ def find_resource_files(): | |
url=f'https://github.com/NeonGeckoCom/{SKILL_NAME}', | ||
license='BSD-3-Clause', | ||
install_requires=get_requirements("requirements.txt"), | ||
extras_require={"test": get_requirements("requirements/test.txt")}, | ||
author='Neongecko', | ||
author_email='[email protected]', | ||
long_description=long_description, | ||
|
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,35 @@ | ||
# Specify intents to test here. Valid test cases are as follows: | ||
|
||
# Basic intent match tests only: | ||
#lang: | ||
# intent_name: | ||
# - example utterance | ||
# - other example utterance | ||
|
||
# Intent tests with expected vocab/entity matches: | ||
#lang: | ||
# intent_name: | ||
# - example_utterance: | ||
# - expected vocab name | ||
# - other expected vocab name | ||
|
||
# Intent tests with specific vocab/entity extraction tests: | ||
#lang: | ||
# intent_name: | ||
# - example_utterance: | ||
# - expected_vocab_key: expected_vocab_value | ||
# - expected_entity_key: expected_entity_value | ||
|
||
|
||
en-us: | ||
SpellIntent: | ||
- spell something: | ||
- Word: something | ||
- how do you spell the word excellent: | ||
- Word: excellent | ||
|
||
unmatched intents: | ||
en-us: | ||
- how do you spell | ||
- what is a spell | ||
- can you spell |
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,21 @@ | ||
# Specify resources to test here. | ||
|
||
# Specify languages to be tested | ||
languages: | ||
- "en-us" | ||
|
||
# vocab is lowercase .voc file basenames | ||
vocab: | ||
- spell | ||
|
||
# dialog is .dialog file basenames (case-sensitive) | ||
dialog: [] | ||
# regex entities, not necessarily filenames | ||
regex: | ||
- Word | ||
intents: | ||
# Padatious intents are the `.intent` file names | ||
padatious: [] | ||
# Adapt intents are the name passed to the constructor | ||
adapt: | ||
- SpellIntent |
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