update augorWorker to use openRouter configuration and set llmModel in config

This commit is contained in:
ImBenji 2026-04-22 22:12:16 +01:00
parent ca087eba5c
commit f580e7f117

View file

@ -17,7 +17,7 @@ function getIntelligenceDb() {
if (!fs.existsSync(rawPath)) return null;
idb = new Database(rawPath, { readonly: true });
idb = new Database(rawPath);
return idb;
}