graph is a separate service; fireflies rate limit handling; better note agent instructions

This commit is contained in:
Arjun 2026-01-10 10:59:18 +05:30 committed by Ramnique Singh
parent 31e6eed96f
commit df93066fe0
6 changed files with 1173 additions and 522 deletions

View file

@ -7,6 +7,7 @@ import { init as initGmailSync } from "@x/core/dist/knowledge/sync_gmail.js";
import { init as initCalendarSync } from "@x/core/dist/knowledge/sync_calendar.js";
import { init as initFirefliesSync } from "@x/core/dist/knowledge/sync_fireflies.js";
import { init as initGranolaSync } from "@x/core/dist/knowledge/granola/sync.js";
import { init as initGraphBuilder } from "@x/core/dist/knowledge/build_graph.js";
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
@ -58,6 +59,9 @@ app.whenReady().then(() => {
// start granola sync
initGranolaSync();
// start knowledge graph builder
initGraphBuilder();
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow();