- ADR-0001: Multi-Agent Coworking Architecture with LLM Gateway Orchestrator - ADR-0002: Tier Assignment Strategy for Model Selection (cost-first escalation) - ADR-0003: Confidence Gate Thresholds & Learning Cycle Intervals (6h/12h/24h cycles) - ADR-0004: External Provider Fallback Chain Ordering (Cerebras → Groq → Mistral) - Enhanced client SDK: Offline Ollama fallback, health checks, exponential backoff retry - Integration tests: claude-code-integration.test.ts (14 test cases) - PHASE_2F_DEPLOYMENT.md: Pre-deployment checklist, automated deploy, rollback plan - Post-deployment verification procedures for health, client fallback, metrics
39 lines
923 B
JSON
39 lines
923 B
JSON
{
|
|
"name": "@llm-gateway/gateway",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/server.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/server.js",
|
|
"test": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/cors": "^10.1.0",
|
|
"@fastify/helmet": "^12.0.1",
|
|
"@fastify/rate-limit": "^10.3.0",
|
|
"@fastify/static": "^8.3.0",
|
|
"@shieldx/core": "file:../../../../../shieldx",
|
|
"ajv": "^8.17.1",
|
|
"fastify": "^5.8.5",
|
|
"franc": "^6.2.0",
|
|
"js-yaml": "^4.1.0",
|
|
"opossum": "^8.1.3",
|
|
"pg": "^8.13.1",
|
|
"pg-boss": "^10.1.3",
|
|
"pino": "^9.5.0",
|
|
"prom-client": "^15.1.3",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^22.10.6",
|
|
"@types/opossum": "^8.1.9",
|
|
"@types/pg": "^8.11.10",
|
|
"pino-pretty": "^13.1.3",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.2",
|
|
"vitest": "^2.1.8"
|
|
}
|
|
}
|