forked from MycroftAI/mycroft-core
-
Notifications
You must be signed in to change notification settings - Fork 17
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
146 changed files
with
1,128 additions
and
1 deletion.
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
23 changes: 23 additions & 0 deletions
23
test/end2end/session/skill-ovos-fallback-unknown/__init__.py
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,23 @@ | ||
from ovos_workshop.skills.fallback import FallbackSkill | ||
from ovos_workshop.decorators import fallback_handler | ||
|
||
|
||
class UnknownSkill(FallbackSkill): | ||
|
||
@fallback_handler(priority=100) | ||
def handle_fallback(self, message): | ||
utterance = message.data['utterance'].lower() | ||
|
||
try: | ||
self.report_metric('failed-intent', {'utterance': utterance}) | ||
except Exception: | ||
self.log.exception('Error reporting metric') | ||
|
||
for i in ['question', 'who.is', 'why.is']: | ||
if self.voc_match(utterance, i): | ||
self.log.debug('Fallback type: ' + i) | ||
self.speak_dialog(i) | ||
break | ||
else: | ||
self.speak_dialog('unknown') | ||
return True |
4 changes: 4 additions & 0 deletions
4
test/end2end/session/skill-ovos-fallback-unknown/locale/ca-es/question.dialog
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,4 @@ | ||
Em sap greu, però no puc ajudar-vos en això. | ||
No estic segur de com ajudar-vos amb això. | ||
No us entenc, però aprenc coses noves cada dia. | ||
No sé com respondre a això. |
15 changes: 15 additions & 0 deletions
15
test/end2end/session/skill-ovos-fallback-unknown/locale/ca-es/question.voc
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,15 @@ | ||
què és|què són | ||
què serà|què seran|què | ||
què ha fet|què va fer | ||
què fa | ||
què fa | ||
on és|on està|on són|on estan | ||
on serà|on seran | ||
(on|en quin lloc) (va ser|van ser|fou|foren) | ||
(on|en quin lloc) | ||
en quin lloc|on | ||
quan és | ||
on serà|quan serà | ||
quan (va ser|van ser|fou|foren) | ||
quan | ||
quan |
9 changes: 9 additions & 0 deletions
9
test/end2end/session/skill-ovos-fallback-unknown/locale/ca-es/unknown.dialog
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,9 @@ | ||
No us entenc, però aprenc coses noves cada dia. | ||
Ho sento, no ho entenc. | ||
No sé què significa això. | ||
Ho sento, no ho he entès. | ||
Ho sento, no ho entenc. | ||
No entenc. | ||
No estic segur d'haver-vos entès | ||
És possible que hàgiu de dir-ho d'una altra manera. | ||
Reformuleu la sol·licitud. |
2 changes: 2 additions & 0 deletions
2
test/end2end/session/skill-ovos-fallback-unknown/locale/ca-es/who.is.dialog
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,2 @@ | ||
No sé qui és. | ||
No estic segur de qui és. |
5 changes: 5 additions & 0 deletions
5
test/end2end/session/skill-ovos-fallback-unknown/locale/ca-es/who.is.voc
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,5 @@ | ||
qui és | ||
qui ho farà | ||
qui va fer | ||
qui | ||
qui |
5 changes: 5 additions & 0 deletions
5
test/end2end/session/skill-ovos-fallback-unknown/locale/ca-es/why.is.dialog
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,5 @@ | ||
No estic segur de com ajudar-vos amb això. | ||
No ho sé. | ||
No n'estic molt segur. | ||
No n'estic segur. | ||
No estic segur, però faig tot el possible per aprendre. |
5 changes: 5 additions & 0 deletions
5
test/end2end/session/skill-ovos-fallback-unknown/locale/ca-es/why.is.voc
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,5 @@ | ||
per què | ||
per què | ||
per què | ||
per què | ||
per què |
4 changes: 4 additions & 0 deletions
4
test/end2end/session/skill-ovos-fallback-unknown/locale/cs-cz/question.dialog
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,4 @@ | ||
Omlouvám se, s tím vám nemohu pomoci. | ||
Nevím jak bych vám s tím pomohl. | ||
Nerozumím, ale každý den se učím nové věci. | ||
Nejsem si jist jak odpovědět. |
11 changes: 11 additions & 0 deletions
11
test/end2end/session/skill-ovos-fallback-unknown/locale/cs-cz/question.voc
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,11 @@ | ||
co je | ||
co bylo | ||
co bude | ||
|
||
kde je | ||
kde bylo | ||
kde bude | ||
|
||
kdy je | ||
kdy bylo | ||
kdy bude |
6 changes: 6 additions & 0 deletions
6
test/end2end/session/skill-ovos-fallback-unknown/locale/cs-cz/unknown.dialog
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,6 @@ | ||
Omlouvám se, nerozumím. | ||
Nevím co to znamená. | ||
Nerozumím, ale každý den se učím nové věci. | ||
Nerozumím. | ||
Můžeš to říci jiným způsobem? | ||
Prosím, zopakuj to. |
2 changes: 2 additions & 0 deletions
2
test/end2end/session/skill-ovos-fallback-unknown/locale/cs-cz/who.is.dialog
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,2 @@ | ||
Nevím kdo to je. | ||
Nejsem si jistý kdo to je. |
3 changes: 3 additions & 0 deletions
3
test/end2end/session/skill-ovos-fallback-unknown/locale/cs-cz/who.is.voc
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,3 @@ | ||
kdo je | ||
kdo byl | ||
kdo bude |
3 changes: 3 additions & 0 deletions
3
test/end2end/session/skill-ovos-fallback-unknown/locale/cs-cz/why.is.dialog
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,3 @@ | ||
Nejsem si jistý jak bych vám s tím mohl pomoci. | ||
Nevím. | ||
Nejsem si jistý. |
3 changes: 3 additions & 0 deletions
3
test/end2end/session/skill-ovos-fallback-unknown/locale/cs-cz/why.is.voc
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,3 @@ | ||
proč je | ||
proč byl | ||
proč bude |
4 changes: 4 additions & 0 deletions
4
test/end2end/session/skill-ovos-fallback-unknown/locale/da-dk/question.dialog
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,4 @@ | ||
Beklager, jeg kan ikke hjælp dig med det. | ||
Jeg er ikke sikker på hvodan jeg kan hjælp dig med det. | ||
Det forstår jeg ikke, men jeg lærer nyt hver dag. | ||
Jeg er ikke sikker på hvordan det kan besvares. |
15 changes: 15 additions & 0 deletions
15
test/end2end/session/skill-ovos-fallback-unknown/locale/da-dk/question.voc
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,15 @@ | ||
hvad er | ||
hvad vil | ||
hvad gør | ||
hvad gør | ||
hvad gør | ||
hvor er | ||
hvor vil | ||
hvor skete | ||
hvor sker | ||
hvor sker | ||
hvornår er | ||
hvornår vil | ||
hvornår skete | ||
hvornår sker | ||
hvornår sker |
9 changes: 9 additions & 0 deletions
9
test/end2end/session/skill-ovos-fallback-unknown/locale/da-dk/unknown.dialog
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,9 @@ | ||
Det forstår jeg ikke, men jeg lærer nyt hver dag. | ||
Jeg beklager, men jeg forstår ikke. | ||
Jeg ved ikke hvad det betyder. | ||
Beklager, jeg fik ikke fat i det. | ||
Beklager, jeg forstår ikke. | ||
Jeg forstår ikke. | ||
Jeg er ikke sikker på jeg forstod dig. | ||
Du må prøve at sige det på en anden måde. | ||
Venligst omformulér din forespørgsel. |
2 changes: 2 additions & 0 deletions
2
test/end2end/session/skill-ovos-fallback-unknown/locale/da-dk/who.is.dialog
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,2 @@ | ||
Jeg ved ikke hvem det er. | ||
Jeg er ikke sikker på hvem det er. |
5 changes: 5 additions & 0 deletions
5
test/end2end/session/skill-ovos-fallback-unknown/locale/da-dk/who.is.voc
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,5 @@ | ||
Hvem er | ||
hvem vil | ||
hvem gjorde | ||
hvem gør | ||
hvem gør |
5 changes: 5 additions & 0 deletions
5
test/end2end/session/skill-ovos-fallback-unknown/locale/da-dk/why.is.dialog
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,5 @@ | ||
Jeg er ikke sikker på hvodan jeg kan hjælp dig med det. | ||
Jeg ved det ikke. | ||
Jeg er ikke helt sikker. | ||
Jeg er ikke siker. | ||
Jeg er ikke sikker, men jeg gør mit bedste for at lære nyt. |
5 changes: 5 additions & 0 deletions
5
test/end2end/session/skill-ovos-fallback-unknown/locale/da-dk/why.is.voc
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,5 @@ | ||
hvorfor er | ||
hvorfor vil | ||
hvorfor gøre | ||
hvorfor gøre | ||
hvorfor gøre |
4 changes: 4 additions & 0 deletions
4
test/end2end/session/skill-ovos-fallback-unknown/locale/de-de/question.dialog
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,4 @@ | ||
Entschuldige, ich kann dir dabei nicht helfen. | ||
Ich bin mir nicht sicher wie ich dir dabei helfen kann. | ||
Ich verstehe das nicht, aber ich lerne jeden Tag neue Dinge. | ||
Ich bin mir nicht sicher wie ich das beantworten soll. |
15 changes: 15 additions & 0 deletions
15
test/end2end/session/skill-ovos-fallback-unknown/locale/de-de/question.voc
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,15 @@ | ||
was ist | ||
was wird | ||
was tat | ||
was macht | ||
was tust | ||
wo ist | ||
wo wird | ||
wo wurde | ||
woher kommt | ||
wo tatest | ||
wann ist | ||
wann wird | ||
wann hat | ||
wann tut | ||
wann machen |
9 changes: 9 additions & 0 deletions
9
test/end2end/session/skill-ovos-fallback-unknown/locale/de-de/unknown.dialog
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,9 @@ | ||
Ich verstehe das nicht, aber ich lerne jeden Tag neue Dinge. | ||
Es tut mir leid, ich verstehe nicht. | ||
Ich weiß nicht, was das bedeutet. | ||
Entschuldigung, dass habe ich nicht verstanden. | ||
Entschuldigung, ich verstehe nicht. | ||
Ich verstehe nicht. | ||
Ich bin nicht sicher, ob ich dich verstanden habe. | ||
Möglicherweise musst du das anders sagen. | ||
Bitte formuliere deinen Befehl um. |
2 changes: 2 additions & 0 deletions
2
test/end2end/session/skill-ovos-fallback-unknown/locale/de-de/who.is.dialog
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,2 @@ | ||
Ich weiß nicht, wer das ist. | ||
Ich bin nicht sicher, wer das ist. |
5 changes: 5 additions & 0 deletions
5
test/end2end/session/skill-ovos-fallback-unknown/locale/de-de/who.is.voc
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,5 @@ | ||
wer ist | ||
wer wird | ||
wer machte | ||
wer macht | ||
wer macht |
5 changes: 5 additions & 0 deletions
5
test/end2end/session/skill-ovos-fallback-unknown/locale/de-de/why.is.dialog
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,5 @@ | ||
Ich bin mir nicht sicher wie ich dir dabei helfen kann. | ||
Ich weiß es nicht. | ||
Ich bin mir nicht ganz sicher. | ||
Ich bin mir nicht sicher. | ||
Ich bin mir nicht sicher, aber ich gebe mein Bestes, zu lernen. |
5 changes: 5 additions & 0 deletions
5
test/end2end/session/skill-ovos-fallback-unknown/locale/de-de/why.is.voc
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,5 @@ | ||
wieso ist | ||
warum wird | ||
warum machte | ||
warum macht | ||
warum machen |
4 changes: 4 additions & 0 deletions
4
test/end2end/session/skill-ovos-fallback-unknown/locale/en-us/question.dialog
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,4 @@ | ||
I'm sorry I can't help you with that. | ||
I'm not sure how to help you with that. | ||
I don't understand, but I'm learning new things everyday. | ||
I'm not sure how to answer that. |
17 changes: 17 additions & 0 deletions
17
test/end2end/session/skill-ovos-fallback-unknown/locale/en-us/question.voc
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,17 @@ | ||
what is | ||
what will | ||
what did | ||
what does | ||
what do | ||
|
||
where is | ||
where will | ||
where did | ||
where does | ||
where do | ||
|
||
when is | ||
when will | ||
when did | ||
when does | ||
when do |
9 changes: 9 additions & 0 deletions
9
test/end2end/session/skill-ovos-fallback-unknown/locale/en-us/unknown.dialog
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,9 @@ | ||
I'm sorry, I don't understand. | ||
I don't know what that means. | ||
I don't understand, but I'm learning new things everyday. | ||
Sorry, I didn't catch that. | ||
Sorry, I don't understand. | ||
I don't understand. | ||
I'm not sure I understood you. | ||
You might have to say that a different way. | ||
Please rephrase your request. |
2 changes: 2 additions & 0 deletions
2
test/end2end/session/skill-ovos-fallback-unknown/locale/en-us/who.is.dialog
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,2 @@ | ||
I don't know who that is. | ||
I'm not sure who that is. |
5 changes: 5 additions & 0 deletions
5
test/end2end/session/skill-ovos-fallback-unknown/locale/en-us/who.is.voc
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,5 @@ | ||
who is | ||
who will | ||
who did | ||
who does | ||
who do |
5 changes: 5 additions & 0 deletions
5
test/end2end/session/skill-ovos-fallback-unknown/locale/en-us/why.is.dialog
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,5 @@ | ||
I'm not sure how to help you with that. | ||
I don't know. | ||
I'm not quite sure. | ||
I'm not sure. | ||
I'm not sure, but I'm doing my best to learn. |
5 changes: 5 additions & 0 deletions
5
test/end2end/session/skill-ovos-fallback-unknown/locale/en-us/why.is.voc
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,5 @@ | ||
why is | ||
why will | ||
why did | ||
why does | ||
why do |
4 changes: 4 additions & 0 deletions
4
test/end2end/session/skill-ovos-fallback-unknown/locale/es-es/question.dialog
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,4 @@ | ||
Lo siento, no puedo ayudarte con eso. | ||
No tengo claro cómo puedo ayudarte con eso. | ||
No lo entiendo, pero aprendo cosas nuevas cada día. | ||
No sé como responder a eso. |
15 changes: 15 additions & 0 deletions
15
test/end2end/session/skill-ovos-fallback-unknown/locale/es-es/question.voc
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,15 @@ | ||
qué es|qué | ||
qué hará|qué | ||
qué hizo|qué | ||
qué hace|qué | ||
qué hace|qué | ||
dónde está|dónde | ||
dónde lo hará|dónde | ||
dónde | ||
dónde | ||
dónde | ||
cuándo es|cuándo | ||
dónde | ||
cuándo | ||
cuándo | ||
cuándo |
9 changes: 9 additions & 0 deletions
9
test/end2end/session/skill-ovos-fallback-unknown/locale/es-es/unknown.dialog
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,9 @@ | ||
No lo entiendo, pero aprendo cosas nuevas cada día. | ||
Lo siento, no entiendo. | ||
No sé qué significa eso. | ||
Lo siento, no lo he pillado. | ||
Disculpa, no lo entiendo. | ||
No entiendo. | ||
Creo que no te sigo. | ||
Tal vez tengas que decir eso de otra manera. | ||
Por favor reformula tu petición. |
2 changes: 2 additions & 0 deletions
2
test/end2end/session/skill-ovos-fallback-unknown/locale/es-es/who.is.dialog
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,2 @@ | ||
No sé quién es ese. | ||
No estoy seguro de quién es. |
5 changes: 5 additions & 0 deletions
5
test/end2end/session/skill-ovos-fallback-unknown/locale/es-es/who.is.voc
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,5 @@ | ||
quién es|quién | ||
quién | ||
quién | ||
quién | ||
quién |
5 changes: 5 additions & 0 deletions
5
test/end2end/session/skill-ovos-fallback-unknown/locale/es-es/why.is.dialog
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,5 @@ | ||
No tengo claro cómo puedo ayudarte con eso. | ||
No lo sé. | ||
No estoy muy seguro. | ||
No estoy seguro. | ||
No estoy seguro, pero hago lo que puedo para aprenderlo. |
5 changes: 5 additions & 0 deletions
5
test/end2end/session/skill-ovos-fallback-unknown/locale/es-es/why.is.voc
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,5 @@ | ||
por qué | ||
por qué | ||
por qué | ||
por qué | ||
por qué |
4 changes: 4 additions & 0 deletions
4
test/end2end/session/skill-ovos-fallback-unknown/locale/es-lm/question.dialog
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,4 @@ | ||
Lo siento, no puedo ayudarte con eso. | ||
No tengo claro cómo puedo ayudarte con eso. | ||
No lo entiendo, pero aprendo cosas nuevas cada día. | ||
No sé como responder a eso. |
15 changes: 15 additions & 0 deletions
15
test/end2end/session/skill-ovos-fallback-unknown/locale/es-lm/question.voc
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,15 @@ | ||
qué es|qué | ||
qué hará|qué | ||
qué hizo|qué | ||
qué hace|qué | ||
qué hace|qué | ||
dónde está|dónde | ||
dónde lo hará|dónde | ||
dónde | ||
dónde | ||
dónde | ||
cuándo es|cuándo | ||
dónde | ||
cuándo | ||
cuándo | ||
cuándo |
9 changes: 9 additions & 0 deletions
9
test/end2end/session/skill-ovos-fallback-unknown/locale/es-lm/unknown.dialog
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,9 @@ | ||
No lo entiendo, pero aprendo cosas nuevas cada día. | ||
Lo siento, no entiendo. | ||
No sé qué significa eso. | ||
Lo siento, no lo he pillado. | ||
Disculpa, no lo entiendo. | ||
No entiendo. | ||
Creo que no te sigo. | ||
Tal vez tengas que decir eso de otra manera. | ||
Por favor reformula tu petición. |
2 changes: 2 additions & 0 deletions
2
test/end2end/session/skill-ovos-fallback-unknown/locale/es-lm/who.is.dialog
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,2 @@ | ||
No sé quién es ese. | ||
No estoy seguro de quién es. |
Oops, something went wrong.