From ff3be51e13a445263e44991444e6c3076b7b165a Mon Sep 17 00:00:00 2001 From: OG T Date: Fri, 10 Apr 2026 15:56:19 +0800 Subject: [PATCH] =?UTF-8?q?fix(phase34):=20=E5=9C=96=E7=89=87=E5=88=86?= =?UTF-8?q?=E6=9E=90=E6=94=B9=E7=94=A8=20send=5Fas=5Fopenclaw=20=E7=99=BC?= =?UTF-8?q?=E5=88=B0=20SRE=20=E7=BE=A4=E7=B5=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit send_notification 發到私人 chat,改用 send_as_openclaw 發到 SRE 戰情室 Co-Authored-By: Claude Sonnet 4.6 --- apps/api/src/services/image_analysis_service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/src/services/image_analysis_service.py b/apps/api/src/services/image_analysis_service.py index 46372156..a42b7155 100644 --- a/apps/api/src/services/image_analysis_service.py +++ b/apps/api/src/services/image_analysis_service.py @@ -168,11 +168,11 @@ class ImageAnalysisService: question=question, ) if result: - # Phase 34: OpenClaw bot 回覆圖片分析結果(llava vision) + # Phase 34: OpenClaw 在 SRE 群組回覆圖片分析結果(llava vision) from src.services.telegram_gateway import get_telegram_gateway tg = get_telegram_gateway() await tg.initialize() - await tg.send_notification(f"🖼️ 圖片分析\n{result}") + await tg.send_as_openclaw(f"🖼️ 圖片分析\n{result}") except Exception as e: logger.warning("download_and_analyze_failed", error=str(e))