65 lines
1.2 KiB
TOML
65 lines
1.2 KiB
TOML
|
|
# Idle-banter control voice commands. The banter background thread is started
|
||
|
|
# unconditionally; gating happens via JARVIS_IDLE_BANTER env. These commands
|
||
|
|
# let the user trigger / pause it without touching env.
|
||
|
|
|
||
|
|
[[commands]]
|
||
|
|
id = "banter.fire"
|
||
|
|
type = "lua"
|
||
|
|
script = "fire.lua"
|
||
|
|
sandbox = "standard"
|
||
|
|
timeout = 5000
|
||
|
|
|
||
|
|
[commands.phrases]
|
||
|
|
ru = [
|
||
|
|
"скажи что-нибудь интересное",
|
||
|
|
"пошути",
|
||
|
|
"развлеки меня",
|
||
|
|
"скучно мне",
|
||
|
|
]
|
||
|
|
en = [
|
||
|
|
"say something interesting",
|
||
|
|
"tell me something",
|
||
|
|
"entertain me",
|
||
|
|
"i'm bored",
|
||
|
|
]
|
||
|
|
|
||
|
|
|
||
|
|
[[commands]]
|
||
|
|
id = "banter.pause"
|
||
|
|
type = "lua"
|
||
|
|
script = "pause.lua"
|
||
|
|
sandbox = "minimal"
|
||
|
|
timeout = 1500
|
||
|
|
|
||
|
|
[commands.phrases]
|
||
|
|
ru = [
|
||
|
|
"помолчи",
|
||
|
|
"не отвлекай меня",
|
||
|
|
"выключи болтовню",
|
||
|
|
]
|
||
|
|
en = [
|
||
|
|
"be quiet",
|
||
|
|
"stop chatting",
|
||
|
|
"stop chiming in",
|
||
|
|
]
|
||
|
|
|
||
|
|
|
||
|
|
[[commands]]
|
||
|
|
id = "banter.resume"
|
||
|
|
type = "lua"
|
||
|
|
script = "resume.lua"
|
||
|
|
sandbox = "minimal"
|
||
|
|
timeout = 1500
|
||
|
|
|
||
|
|
[commands.phrases]
|
||
|
|
ru = [
|
||
|
|
"можешь говорить",
|
||
|
|
"включи болтовню",
|
||
|
|
"верни комментарии",
|
||
|
|
]
|
||
|
|
en = [
|
||
|
|
"you can speak again",
|
||
|
|
"resume chatting",
|
||
|
|
"you may comment",
|
||
|
|
]
|