34 lines
639 B
TOML
34 lines
639 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"]
|
||
|
|
|
||
|
|
|
||
|
|
[[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"]
|