12 lines
369 B
Lua
12 lines
369 B
Lua
|
|
-- Cheap response so user knows mic chain works without invoking LLM/network.
|
|||
|
|
local responses = {
|
|||
|
|
"Да, сэр.",
|
|||
|
|
"Здесь, сэр.",
|
|||
|
|
"Слушаю.",
|
|||
|
|
"К вашим услугам.",
|
|||
|
|
"На месте.",
|
|||
|
|
}
|
|||
|
|
math.randomseed(os.time() + (jarvis.context.time.minute or 0))
|
|||
|
|
local idx = math.random(1, #responses)
|
|||
|
|
return jarvis.cmd.ok(responses[idx])
|