From f580e7f11744f28321289cec40feef0ecaab22e1 Mon Sep 17 00:00:00 2001 From: ImBenji Date: Wed, 22 Apr 2026 22:12:16 +0100 Subject: [PATCH] update augorWorker to use openRouter configuration and set llmModel in config --- src/routes/admin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/admin.js b/src/routes/admin.js index dc230b3..fb0bba7 100644 --- a/src/routes/admin.js +++ b/src/routes/admin.js @@ -17,7 +17,7 @@ function getIntelligenceDb() { if (!fs.existsSync(rawPath)) return null; - idb = new Database(rawPath, { readonly: true }); + idb = new Database(rawPath); return idb; }