-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 2.83 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 2.83 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@superinstance/cascade-router",
"version": "1.0.0",
"description": "Intelligent LLM routing with cost optimization and progress monitoring",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cascade-router": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint src --ext .ts",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run build"
},
"keywords": [
"llm",
"routing",
"ai",
"cost-optimization",
"rate-limiting",
"provider-abstraction",
"anthropic",
"openai",
"ollama",
"mcp",
"llm-routing",
"ai-routing",
"model-selection",
"intelligent-routing",
"cost-optimization",
"ai-cost-optimization",
"budget-management",
"token-budget",
"cost-tracking",
"rate-limiting",
"api-rate-limit",
"throttling",
"fallback",
"automatic-fallback",
"provider-fallback",
"speculative-execution",
"parallel-execution",
"race-condition",
"latency-optimization",
"speed-optimization",
"quality-vs-cost",
"balanced-routing",
"priority-routing",
"multi-provider",
"provider-abstraction",
"model-agnostic",
"ai-agents",
"multi-agent-systems",
"agent-orchestration",
"developer-tools",
"ai-tools",
"machine-learning-tools",
"ai-developer-tools",
"openai-api",
"anthropic-api",
"claude",
"gpt",
"gpt-4",
"gpt-3.5-turbo",
"local-llm",
"local-inference",
"ollama-models",
"llama",
"mistral",
"progress-monitoring",
"streaming",
"real-time-ai",
"cli-tools",
"typescript",
"javascript",
"npm-package",
"api-management",
"api-optimization",
"llm-ops",
"ai-ops",
"model-deployment",
"production-ai",
"enterprise-ai",
"scalable-ai",
"cost-effective-ai",
"smart-routing"
],
"author": "SuperInstance",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SuperInstance/CascadeRouter.git"
},
"bugs": {
"url": "https://github.com/SuperInstance/CascadeRouter/issues"
},
"homepage": "https://github.com/SuperInstance/CascadeRouter#readme",
"dependencies": {
"commander": "^12.0.0",
"chalk": "^5.3.0",
"ora": "^8.0.1",
"inquirer": "^9.2.12",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/inquirer": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"typescript": "^5.3.2",
"vitest": "^1.0.4",
"@vitest/coverage-v8": "^1.0.4"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}