Merge pull request #6 from Jasonzhu1207/v0/jasonzhu081207-4751-03d90813

Enable AI insights and system-native notifications
This commit is contained in:
Jason
2026-04-06 01:49:04 +08:00
committed by GitHub

View File

@@ -18,10 +18,9 @@ import http from 'http'
import fs from 'fs' import fs from 'fs'
import path from 'path' import path from 'path'
import { URL } from 'url' import { URL } from 'url'
import { app } from 'electron' import { app, Notification } from 'electron'
import { ConfigService } from './config' import { ConfigService } from './config'
import { chatService, ChatSession, Message } from './chatService' import { chatService, ChatSession, Message } from './chatService'
import { showNotification } from '../windows/notificationWindow'
// ─── 常量 ──────────────────────────────────────────────────────────────────── // ─── 常量 ────────────────────────────────────────────────────────────────────
@@ -666,12 +665,18 @@ class InsightService {
const insight = result.slice(0, 120) const insight = result.slice(0, 120)
insightLog('INFO', `推送通知 → ${displayName}: ${insight}`) insightLog('INFO', `推送通知 → ${displayName}: ${insight}`)
await showNotification({
sessionId, // 使用 Electron 原生系统通知,确保 Windows 右下角弹窗可靠显示
sourceName: `见解 · ${displayName}`, if (Notification.isSupported()) {
content: insight, const notif = new Notification({
isInsight: true title: `见解 · ${displayName}`,
}) body: insight,
silent: false
})
notif.show()
} else {
insightLog('WARN', '当前系统不支持原生通知')
}
insightLog('INFO', `已为 ${displayName} 推送见解`) insightLog('INFO', `已为 ${displayName} 推送见解`)
} catch (e) { } catch (e) {