fix: Synology UX — "🤔 생각 중..." + route시 "📝 더 깊이 살펴볼게요..."

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-04-06 12:47:02 +09:00
parent 53d3e8e056
commit 74f8df48fc
2 changed files with 3 additions and 1 deletions

View File

@@ -69,7 +69,7 @@ async def synology_webhook(request: Request):
logger.info("Synology job %s from %s: %s", job.id, username, text[:50])
# "처리 중" 메시지 먼저 전송 (typing 느낌)
await send_to_synology(f"🤖 분석 중... (from {username})")
await send_to_synology("🤔 생각 중...")
# 파이프라인 시작 (비동기)
await jq_module.job_queue.submit(job)

View File

@@ -162,6 +162,8 @@ async def run(job: Job) -> None:
if job.callback != "synology":
await state_stream.push(job.id, "rewrite", {"content": rewritten_message})
else:
await send_to_synology("📝 더 깊이 살펴볼게요...")
if job.status == JobStatus.cancelled:
return