Permalink
Please sign in to comment.
Browse files
Attempt at modifying the news skill for my locale
As the title implies.
- Loading branch information...
Showing
with
44 additions
and 42 deletions.
- +2 −2 mycroft/configuration/mycroft.ini
- +0 −2 mycroft/skills/npr_news/dialog/en-us/npr.news.dialog
- +0 −7 mycroft/skills/npr_news/test/intent/sample1.intent.json
- +0 −7 mycroft/skills/npr_news/test/intent/sample2.intent.json
- +0 −7 mycroft/skills/npr_news/test/intent/sample3.intent.json
- +0 −7 mycroft/skills/npr_news/test/intent/sample4.intent.json
- +0 −2 mycroft/skills/npr_news/vocab/en-us/NPRNewsKeyword.voc
- +8 −8 mycroft/skills/{npr_news → slo_news}/__init__.py
- +2 −0 mycroft/skills/slo_news/dialog/en-us/slo.news.dialog
- 0 .../skills/{npr_news/dialog/en-us/npr.news.stop.dialog → slo_news/dialog/en-us/slo.news.stop.dialog}
- +7 −0 mycroft/skills/slo_news/test/intent/sample1.intent.json
- +7 −0 mycroft/skills/slo_news/test/intent/sample2.intent.json
- +7 −0 mycroft/skills/slo_news/test/intent/sample3.intent.json
- +7 −0 mycroft/skills/slo_news/test/intent/sample4.intent.json
- +4 −0 mycroft/skills/slo_news/vocab/en-us/SLONewsKeyword.voc
| @@ -1,2 +0,0 @@ | ||
| -Here is the top of the hour news from NPR. | ||
| -Here is this hour's news from NPR. |
| @@ -1,7 +0,0 @@ | ||
| -{ | ||
| - "utterance": "what's the news", | ||
| - "intent_type": "NPRNewsIntent", | ||
| - "intent": { | ||
| - "NPRNewsKeyword": "news" | ||
| - } | ||
| -} |
| @@ -1,7 +0,0 @@ | ||
| -{ | ||
| - "utterance": "is there any news", | ||
| - "intent_type": "NPRNewsIntent", | ||
| - "intent": { | ||
| - "NPRNewsKeyword": "news" | ||
| - } | ||
| -} |
| @@ -1,7 +0,0 @@ | ||
| -{ | ||
| - "utterance": "tell me the news", | ||
| - "intent_type": "NPRNewsIntent", | ||
| - "intent": { | ||
| - "NPRNewsKeyword": "tell me the news" | ||
| - } | ||
| -} |
| @@ -1,7 +0,0 @@ | ||
| -{ | ||
| - "utterance": "what are the latest news", | ||
| - "intent_type": "NPRNewsIntent", | ||
| - "intent": { | ||
| - "NPRNewsKeyword": "news" | ||
| - } | ||
| -} |
| @@ -1,2 +0,0 @@ | ||
| -news | ||
| -tell me the news |
| @@ -0,0 +1,2 @@ | ||
| +Here is the top of the morning news from Slovenia. | ||
| +Here is this morning's news from NPR. |
File renamed without changes.
| @@ -0,0 +1,7 @@ | ||
| +{ | ||
| + "utterance": "what's the news", | ||
| + "intent_type": "SLONewsIntent", | ||
| + "intent": { | ||
| + "SLONewsKeyword": "news" | ||
| + } | ||
| +} |
| @@ -0,0 +1,7 @@ | ||
| +{ | ||
| + "utterance": "is there any news", | ||
| + "intent_type": "SLONewsIntent", | ||
| + "intent": { | ||
| + "SLONewsKeyword": "news" | ||
| + } | ||
| +} |
| @@ -0,0 +1,7 @@ | ||
| +{ | ||
| + "utterance": "tell me the news", | ||
| + "intent_type": "SLONewsIntent", | ||
| + "intent": { | ||
| + "SLONewsKeyword": "tell me the news" | ||
| + } | ||
| +} |
| @@ -0,0 +1,7 @@ | ||
| +{ | ||
| + "utterance": "what are the latest news", | ||
| + "intent_type": "SLONewsIntent", | ||
| + "intent": { | ||
| + "SLONewsKeyword": "news" | ||
| + } | ||
| +} |
| @@ -0,0 +1,4 @@ | ||
| +news | ||
| +tell me the news | ||
| +whats the news | ||
| +what's the news |
0 comments on commit
164c720