Skip to content

Commit

Permalink
Feat/refactor dummy skill (#530)
Browse files Browse the repository at this point in the history
* dummy skill refactor

* add dummy params

* split code into funcs

* remove unnecessary func

* change func logic

* docker-compose update

* style

* prettier funcs and names

* style

* add agent cards

* add fallback file
  • Loading branch information
smilni authored Aug 13, 2023
1 parent 4f47d73 commit 7846b28
Show file tree
Hide file tree
Showing 7 changed files with 213 additions and 158 deletions.
4 changes: 4 additions & 0 deletions assistant_dists/dream_alexa/docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ services:
HIGH_PRIORITY_INTENTS: 1
RESTRICTION_FOR_SENSITIVE_CASE: 1
ALWAYS_TURN_ON_ALL_SKILLS: 0
ENABLE_NP_QUESTIONS: 1
ENABLE_SWITCH_TOPIC: 1
ENABLE_LINK_QUESTIONS: 1
ENABLE_NP_FACTS: 1
LANGUAGE: EN
FALLBACK_FILE: fallbacks_dream_en.json

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ services:
HIGH_PRIORITY_INTENTS: 1
RESTRICTION_FOR_SENSITIVE_CASE: 1
ALWAYS_TURN_ON_ALL_SKILLS: 0
ENABLE_NP_QUESTIONS: 1
ENABLE_SWITCH_TOPIC: 1
ENABLE_LINK_QUESTIONS: 1
ENABLE_NP_FACTS: 1
LANGUAGE: EN
FALLBACK_FILE: fallbacks_dream_en.json

convers-evaluator-annotator:
env_file: [ .env ]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,9 @@ WAIT_HOSTS_TIMEOUT: ${WAIT_TIMEOUT:-480}
HIGH_PRIORITY_INTENTS: 1
RESTRICTION_FOR_SENSITIVE_CASE: 1
ALWAYS_TURN_ON_ALL_SKILLS: 0
ENABLE_NP_QUESTIONS: 1
ENABLE_SWITCH_TOPIC: 1
ENABLE_LINK_QUESTIONS: 1
ENABLE_NP_FACTS: 1
LANGUAGE: EN
FALLBACK_FILE: fallbacks_dream_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ compose:
HIGH_PRIORITY_INTENTS: 1
RESTRICTION_FOR_SENSITIVE_CASE: 1
ALWAYS_TURN_ON_ALL_SKILLS: 0
ENABLE_NP_QUESTIONS: 1
ENABLE_SWITCH_TOPIC: 1
ENABLE_LINK_QUESTIONS: 1
ENABLE_NP_FACTS: 1
LANGUAGE: EN
FALLBACK_FILE: fallbacks_dream_en.json
volumes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,9 @@ WAIT_HOSTS_TIMEOUT: ${WAIT_TIMEOUT:-480}
HIGH_PRIORITY_INTENTS: 1
RESTRICTION_FOR_SENSITIVE_CASE: 1
ALWAYS_TURN_ON_ALL_SKILLS: 0
ENABLE_NP_QUESTIONS: 1
ENABLE_SWITCH_TOPIC: 1
ENABLE_LINK_QUESTIONS: 1
ENABLE_NP_FACTS: 1
LANGUAGE: EN
FALLBACK_FILE: fallbacks_dream_en.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ compose:
HIGH_PRIORITY_INTENTS: 1
RESTRICTION_FOR_SENSITIVE_CASE: 1
ALWAYS_TURN_ON_ALL_SKILLS: 0
ENABLE_NP_QUESTIONS: 1
ENABLE_SWITCH_TOPIC: 1
ENABLE_LINK_QUESTIONS: 1
ENABLE_NP_FACTS: 1
LANGUAGE: EN
FALLBACK_FILE: fallbacks_dream_en.json
volumes:
Expand Down
Loading

0 comments on commit 7846b28

Please sign in to comment.