mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-25 18:55:19 +02:00
graph is a separate service; fireflies rate limit handling; better note agent instructions
This commit is contained in:
parent
31e6eed96f
commit
df93066fe0
6 changed files with 1173 additions and 522 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue