14 lines
417 B
Lua
14 lines
417 B
Lua
|
|
-- Repeat the last assistant message verbatim. Useful when the user didn't catch
|
||
|
|
-- it (loud room, distraction, etc).
|
||
|
|
|
||
|
|
local lang = jarvis.context.language
|
||
|
|
local last = jarvis.llm_last_reply()
|
||
|
|
|
||
|
|
if not last or last == "" then
|
||
|
|
return jarvis.cmd.not_found(lang == "ru"
|
||
|
|
and "Я ещё ничего не говорил, сэр."
|
||
|
|
or "I haven't said anything yet, sir.")
|
||
|
|
end
|
||
|
|
|
||
|
|
return jarvis.cmd.ok(last)
|