36 lines
717 B
TOML
36 lines
717 B
TOML
|
|
# Echo debug pack — Jarvis repeats what you said. Useful for testing mic+TTS
|
|||
|
|
# without involving wake-word or LLM.
|
|||
|
|
|
|||
|
|
[[commands]]
|
|||
|
|
id = "echo.repeat"
|
|||
|
|
type = "lua"
|
|||
|
|
script = "repeat.lua"
|
|||
|
|
sandbox = "minimal"
|
|||
|
|
timeout = 3000
|
|||
|
|
|
|||
|
|
[commands.phrases]
|
|||
|
|
ru = [
|
|||
|
|
"повтори за мной",
|
|||
|
|
"скажи как я",
|
|||
|
|
"эхо",
|
|||
|
|
"проверка эхо",
|
|||
|
|
]
|
|||
|
|
en = ["repeat after me", "echo"]
|
|||
|
|
ua = ["повтори за мною", "ехо"]
|
|||
|
|
|
|||
|
|
|
|||
|
|
[[commands]]
|
|||
|
|
id = "echo.what_did_i_say"
|
|||
|
|
type = "lua"
|
|||
|
|
script = "what.lua"
|
|||
|
|
sandbox = "minimal"
|
|||
|
|
timeout = 2000
|
|||
|
|
|
|||
|
|
[commands.phrases]
|
|||
|
|
ru = [
|
|||
|
|
"что я сказал",
|
|||
|
|
"что ты услышал",
|
|||
|
|
]
|
|||
|
|
en = ["what did i say", "what did you hear"]
|
|||
|
|
ua = ["що я сказав"]
|