12 lines
369 B
Lua
12 lines
369 B
Lua
|
|
local h = jarvis.health()
|
||
|
|
local line = string.format(
|
||
|
|
"TTS: %s. LLM: %s. Профиль: %s. Памяти фактов: %d. Запланировано: %d. Язык: %s.",
|
||
|
|
h.tts_backend or "—",
|
||
|
|
h.llm_backend or "—",
|
||
|
|
h.active_profile or "—",
|
||
|
|
h.memory_facts or 0,
|
||
|
|
h.scheduled_tasks or 0,
|
||
|
|
h.language or "—"
|
||
|
|
)
|
||
|
|
return jarvis.cmd.ok(line)
|