llm-gateway/package.json
Rene Fichtmueller 3a00ff4d33 feat: initial llm-gateway implementation
- Complete Fastify gateway with 8-stage pipeline
- Circuit breaker (opossum) per model tier
- Rate limiting per caller
- Ban list validation (EN/DE/auto-detected)
- TIP validator (SFF-8024, part numbers, wavelengths)
- Prometheus metrics
- pg-boss async queue
- PostgreSQL audit log + review queue
- 9 prompt templates (TIP, LinkedIn, ShieldX)
- Learning engine scaffolding
- Auto-learning: ban-list, few-shot, routing, prompt optimizer
2026-04-02 22:48:55 +02:00

17 lines
507 B
JSON

{
"name": "llm-gateway",
"version": "1.0.0",
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"dev": "npm run dev --workspace=packages/gateway",
"build": "npm run build --workspace=packages/gateway",
"start": "npm run start --workspace=packages/gateway",
"learning": "npm run start --workspace=packages/learning",
"install:all": "npm install",
"test": "vitest",
"db:migrate": "bash scripts/init-db.sh",
"models:pull": "bash scripts/pull-models.sh"
}
}