refactor: load environment variables from .env file and update openRouter configuration
This commit is contained in:
parent
1ec273a72b
commit
80d545fa6a
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ async function runConsolidationWorker(archiveDb, intelligenceDb, config) {
|
||||||
);
|
);
|
||||||
|
|
||||||
const insertFact = intelligenceDb.prepare(`
|
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)
|
(company_id, type, claim, confidence, confirmation_count, first_seen_at, last_seen_at, last_event_id, supporting_event_ids)
|
||||||
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)
|
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)
|
||||||
`);
|
`);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue