chore: auto-commit from dashboard

This commit is contained in:
2026-05-27 06:12:13 +00:00
parent 574f9be5ea
commit 44cf0001bb
6 changed files with 34 additions and 25 deletions

View File

@@ -269,9 +269,9 @@
"prompt": "Heartbeat check. Rulează src/heartbeat.py printr-un scurt raport de status.\nDacă nu e nimic de raportat (email=0, calendar nu are evenimente <2h, kb ok), răspunde doar cu HEARTBEAT_OK și oprește-te — nu trimite mesaj.\nDacă e ceva: raport scurt pe Discord #echo-work.", "prompt": "Heartbeat check. Rulează src/heartbeat.py printr-un scurt raport de status.\nDacă nu e nimic de raportat (email=0, calendar nu are evenimente <2h, kb ok), răspunde doar cu HEARTBEAT_OK și oprește-te — nu trimite mesaj.\nDacă e ceva: raport scurt pe Discord #echo-work.",
"allowed_tools": [], "allowed_tools": [],
"enabled": true, "enabled": true,
"last_run": "2026-05-26T18:00:00.002989+00:00", "last_run": "2026-05-27T06:00:00.002154+00:00",
"last_status": "error", "last_status": "ok",
"next_run": "2026-05-27T06:00:00+00:00" "next_run": "2026-05-27T08:00:00+00:00"
}, },
{ {
"name": "night-execute", "name": "night-execute",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 63 KiB

BIN
image.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

View File

@@ -913,6 +913,7 @@ def create_bot(config: Config) -> discord.Client:
@app_commands.describe( @app_commands.describe(
voce="Voce (M1-M5 masculin, F1-F5 feminin; default M2)", voce="Voce (M1-M5 masculin, F1-F5 feminin; default M2)",
text_sau_url="Text direct, URL articol, sau gol pentru ultimul răspuns Echo", text_sau_url="Text direct, URL articol, sau gol pentru ultimul răspuns Echo",
rezumat="Dacă să facă Claude rezumat înainte de TTS (doar pentru URL)",
) )
@app_commands.choices( @app_commands.choices(
voce=[ voce=[
@@ -932,6 +933,7 @@ def create_bot(config: Config) -> discord.Client:
interaction: discord.Interaction, interaction: discord.Interaction,
voce: str | None = None, voce: str | None = None,
text_sau_url: str | None = None, text_sau_url: str | None = None,
rezumat: bool = False,
) -> None: ) -> None:
await interaction.response.defer() await interaction.response.defer()
args: list[str] = [] args: list[str] = []
@@ -939,6 +941,8 @@ def create_bot(config: Config) -> discord.Client:
args.append(voce) args.append(voce)
if text_sau_url: if text_sau_url:
args.extend(text_sau_url.split()) args.extend(text_sau_url.split())
if rezumat:
args.append("rezumat")
result = await asyncio.to_thread(fast_dispatch, "audio", args) result = await asyncio.to_thread(fast_dispatch, "audio", args)
if result and result.startswith("__AUDIO__:"): if result and result.startswith("__AUDIO__:"):
wav_path = result[len("__AUDIO__:"):] wav_path = result[len("__AUDIO__:"):]

View File

@@ -1135,7 +1135,7 @@ def create_telegram_bot(config: Config, token: str) -> Application:
BotCommand("logs", "Show log lines"), BotCommand("logs", "Show log lines"),
BotCommand("doctor", "Diagnostics"), BotCommand("doctor", "Diagnostics"),
BotCommand("heartbeat", "Health checks"), BotCommand("heartbeat", "Health checks"),
BotCommand("audio", "TTS: text → voice note"), BotCommand("audio", "TTS: text/url → voice note [voce] [rezumat]"),
BotCommand("p", "Ralph: propose new project"), BotCommand("p", "Ralph: propose new project"),
BotCommand("a", "Ralph: approve project for tonight"), BotCommand("a", "Ralph: approve project for tonight"),
BotCommand("l", "Ralph: list projects status"), BotCommand("l", "Ralph: list projects status"),

View File

@@ -691,9 +691,9 @@ Reminders:
Audio: Audio:
/audio <text> — TTS pe text /audio <text> — TTS pe text
/audio <url> — Extrage articol → audio /audio <url> — Extrage articol → audio
/audio rezumat <url> — Rezumat Claude → audio /audio <url> rezumat — Rezumat Claude → audio (flag oriunde)
/audio — Ultimul răspuns Echo → audio /audio — Ultimul răspuns Echo → audio
/audio M2 [text|url|gol] — Voce specificată (M1-M5, F1-F5) /audio M2 [text|url] [rezumat] — Voce specificată (M1-M5, F1-F5)
/audio ajutor — Ajutor detaliat /audio ajutor — Ajutor detaliat
Ops: Ops:
@@ -736,6 +736,12 @@ def cmd_audio(args: list[str]) -> str:
voice = remaining[0].upper() voice = remaining[0].upper()
remaining = remaining[1:] remaining = remaining[1:]
# Detectare flag "rezumat" oriunde în args (indiferent de ordine)
do_summarize = False
if any(t.lower() == "rezumat" for t in remaining):
do_summarize = True
remaining = [t for t in remaining if t.lower() != "rezumat"]
channel_id = _get_ctx_channel() channel_id = _get_ctx_channel()
# Determinare text sursă # Determinare text sursă
@@ -750,30 +756,29 @@ def cmd_audio(args: list[str]) -> str:
elif len(remaining) == 1 and remaining[0].lower() == "ajutor": elif len(remaining) == 1 and remaining[0].lower() == "ajutor":
return ( return (
"🎙️ /audio — Text-to-Speech local (Supertonic)\n\n" "🎙️ /audio — Text-to-Speech local (Supertonic)\n\n"
" /audio <text> — TTS pe text dat\n" " /audio <text> — TTS pe text dat\n"
" /audio <url> — extrage articol → audio\n" " /audio <url> — extrage articol → audio\n"
" /audio rezumat <url> — rezumat Claude → audio\n" " /audio <url> rezumat — rezumat Claude → audio\n"
" /audio — ultimul răspuns Echo → audio\n" " /audio — ultimul răspuns Echo → audio\n"
" /audio M2 <...> — voce specifică (M1-M5, F1-F5)\n\n" " /audio M2 [text|url] [rezumat] — voce specifică (M1-M5, F1-F5)\n\n"
"Flag rezumat: poate fi pus oriunde în comandă\n"
" /audio rezumat <url> ≡ /audio <url> rezumat ≡ /audio M2 <url> rezumat\n\n"
"Voci: M1 M2 M3 M4 M5 (masculin) · F1 F2 F3 F4 F5 (feminin)" "Voci: M1 M2 M3 M4 M5 (masculin) · F1 F2 F3 F4 F5 (feminin)"
) )
elif (len(remaining) >= 2
and remaining[0].lower() == "rezumat"
and remaining[1].startswith("http")):
url = remaining[1]
extracted = _extract_url_text(url)
if not extracted:
return f"Nu am putut extrage text din URL: {url}"
text = _claude_summarize(extracted)
if not text:
return "Rezumatul a eșuat. Încearcă /audio <url> pentru extragere directă."
elif len(remaining) == 1 and remaining[0].startswith("http"): elif len(remaining) == 1 and remaining[0].startswith("http"):
url = remaining[0] url = remaining[0]
text = _extract_url_text(url) if do_summarize:
if not text: extracted = _extract_url_text(url)
return f"Nu am putut extrage text din URL: {url}" if not extracted:
return f"Nu am putut extrage text din URL: {url}"
text = _claude_summarize(extracted)
if not text:
return "Rezumatul a eșuat. Încearcă /audio <url> pentru extragere directă."
else:
text = _extract_url_text(url)
if not text:
return f"Nu am putut extrage text din URL: {url}"
else: else:
text = " ".join(remaining) text = " ".join(remaining)