refactor: load environment variables from .env file and update openRouter configuration

This commit is contained in:
ImBenji 2026-04-27 19:00:32 +01:00
parent 1ec273a72b
commit 80d545fa6a

View file

@ -32,7 +32,7 @@ async function runConsolidationWorker(archiveDb, intelligenceDb, config) {
);
const insertFact = intelligenceDb.prepare(`
INSERT INTO company_facts
INSERT OR IGNORE INTO company_facts
(company_id, type, claim, confidence, confirmation_count, first_seen_at, last_seen_at, last_event_id, supporting_event_ids)
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)
`);