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

@@ -913,6 +913,7 @@ def create_bot(config: Config) -> discord.Client:
@app_commands.describe(
voce="Voce (M1-M5 masculin, F1-F5 feminin; default M2)",
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(
voce=[
@@ -932,6 +933,7 @@ def create_bot(config: Config) -> discord.Client:
interaction: discord.Interaction,
voce: str | None = None,
text_sau_url: str | None = None,
rezumat: bool = False,
) -> None:
await interaction.response.defer()
args: list[str] = []
@@ -939,6 +941,8 @@ def create_bot(config: Config) -> discord.Client:
args.append(voce)
if text_sau_url:
args.extend(text_sau_url.split())
if rezumat:
args.append("rezumat")
result = await asyncio.to_thread(fast_dispatch, "audio", args)
if result and result.startswith("__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("doctor", "Diagnostics"),
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("a", "Ralph: approve project for tonight"),
BotCommand("l", "Ralph: list projects status"),

View File

@@ -691,9 +691,9 @@ Reminders:
Audio:
/audio <text> — TTS pe text
/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 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
Ops:
@@ -736,6 +736,12 @@ def cmd_audio(args: list[str]) -> str:
voice = remaining[0].upper()
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()
# Determinare text sursă
@@ -750,30 +756,29 @@ def cmd_audio(args: list[str]) -> str:
elif len(remaining) == 1 and remaining[0].lower() == "ajutor":
return (
"🎙️ /audio — Text-to-Speech local (Supertonic)\n\n"
" /audio <text> — TTS pe text dat\n"
" /audio <url> — extrage articol → audio\n"
" /audio rezumat <url> — rezumat Claude → audio\n"
" /audio — ultimul răspuns Echo → audio\n"
" /audio M2 <...> — voce specifică (M1-M5, F1-F5)\n\n"
" /audio <text> — TTS pe text dat\n"
" /audio <url> — extrage articol → audio\n"
" /audio <url> rezumat — rezumat Claude → audio\n"
" /audio — ultimul răspuns Echo → audio\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)"
)
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"):
url = remaining[0]
text = _extract_url_text(url)
if not text:
return f"Nu am putut extrage text din URL: {url}"
if do_summarize:
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ă."
else:
text = _extract_url_text(url)
if not text:
return f"Nu am putut extrage text din URL: {url}"
else:
text = " ".join(remaining)