-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (61 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (61 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "llm-switchboard",
"version": "1.0.2",
"description": "Blazing-fast, zero-cost local LLM router. Classify and route prompts to specialized AI models (OpenAI, Claude, Gemini, Llama) with <1ms latency using heuristic rules.",
"repository": {
"type": "git",
"url": "git+https://github.com/Uo1428/llm-switchboard.git"
},
"bugs": {
"url": "https://github.com/Uo1428/llm-switchboard/issues"
},
"homepage": "https://github.com/Uo1428/llm-switchboard#readme",
"main": "dist/index.js",
"types": "types/index.d.ts",
"type": "module",
"scripts": {
"test": "npx tsx test-router.ts",
"build": "bun build ./src/index.ts --outdir ./dist --target node && tsc --emitDeclarationOnly --outDir types",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"types",
"src",
"README.md"
],
"keywords": [
"llm",
"llm-router",
"ai-router",
"prompt-routing",
"model-orchestration",
"openai",
"claude",
"gemini",
"llama",
"deepseek",
"ai-gateway",
"prompt-engineering",
"cost-optimization",
"latency-optimization",
"agentic-workflows",
"typescript",
"classification",
"nlp",
"serverless-ai",
"switchboard"
],
"author": "Uo1428",
"license": "MIT",
"sideEffects": false,
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.9.3"
}
}