feat: harden intelligence runtime and llm providers

This commit is contained in:
2026-05-16 21:18:34 +02:00
parent 7e85a54c32
commit 85f97bb2a6
22 changed files with 732 additions and 201 deletions

View File

@@ -11,6 +11,9 @@
"brief": "node apis/briefing.mjs",
"brief:save": "node apis/save-briefing.mjs",
"diag": "node diag.mjs",
"test": "npm run test:unit",
"test:unit": "node --test test/llm-openrouter.test.mjs test/llm-ollama.test.mjs test/llm-openai-compatible.test.mjs test/fetch-utils.test.mjs",
"compose:config": "docker compose config",
"clean": "node scripts/clean.mjs",
"fresh-start": "npm run clean && npm start"
},
@@ -30,7 +33,9 @@
"express": "^5.1.0"
},
"optionalDependencies": {
"discord.js": "^14.25.1" },
"discord.js": "^14.25.1"
},
"overrides": {
"undici": "^7.24.4" }
"undici": "^7.24.4"
}
}