@juspay/neurolink 9.36.0 → 9.36.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/cli/commands/proxy.js +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [9.36.1](https://github.com/juspay/neurolink/compare/v9.36.0...v9.36.1) (2026-03-28)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **(proxy):** change default strategy from round-robin to fill-first ([067ec34](https://github.com/juspay/neurolink/commit/067ec34044e2bce162e78dca2ebe104aed1560e2))
|
|
6
|
+
|
|
1
7
|
## [9.36.0](https://github.com/juspay/neurolink/compare/v9.35.0...v9.36.0) (2026-03-28)
|
|
2
8
|
|
|
3
9
|
### Features
|
|
@@ -287,8 +287,8 @@ export const proxyStartCommand = {
|
|
|
287
287
|
.option("strategy", {
|
|
288
288
|
type: "string",
|
|
289
289
|
alias: "s",
|
|
290
|
-
choices: ["
|
|
291
|
-
description: "Account selection strategy for routing requests (default:
|
|
290
|
+
choices: ["fill-first", "round-robin"],
|
|
291
|
+
description: "Account selection strategy for routing requests (default: fill-first)",
|
|
292
292
|
})
|
|
293
293
|
.option("health-interval", {
|
|
294
294
|
type: "number",
|
|
@@ -314,8 +314,8 @@ export const proxyStartCommand = {
|
|
|
314
314
|
description: "Path to proxy config file (YAML/JSON)",
|
|
315
315
|
defaultDescription: "~/.neurolink/proxy-config.yaml",
|
|
316
316
|
})
|
|
317
|
-
.example("neurolink proxy start", "Start proxy on default port 55669 with
|
|
318
|
-
.example("neurolink proxy start -p 8080 -s
|
|
317
|
+
.example("neurolink proxy start", "Start proxy on default port 55669 with fill-first strategy")
|
|
318
|
+
.example("neurolink proxy start -p 8080 -s fill-first", "Start proxy on port 8080 with fill-first")
|
|
319
319
|
.example("neurolink proxy start --health-interval 60", "Start proxy with 60-second health checks");
|
|
320
320
|
},
|
|
321
321
|
handler: async (argv) => {
|
|
@@ -398,7 +398,7 @@ export const proxyStartCommand = {
|
|
|
398
398
|
// -----------------------------------------------------------------
|
|
399
399
|
// 3. Create ModelRouter from config (if routing configured)
|
|
400
400
|
// -----------------------------------------------------------------
|
|
401
|
-
const strategy = argv.strategy ?? proxyConfig?.routing?.strategy ?? "
|
|
401
|
+
const strategy = argv.strategy ?? proxyConfig?.routing?.strategy ?? "fill-first";
|
|
402
402
|
let modelRouter;
|
|
403
403
|
if (proxyConfig?.routing) {
|
|
404
404
|
const { ModelRouter } = await import("../../lib/proxy/modelRouter.js");
|
|
@@ -1373,7 +1373,7 @@ export const proxyInstallCommand = {
|
|
|
1373
1373
|
pid: Number(pidMatch[1]),
|
|
1374
1374
|
port,
|
|
1375
1375
|
host,
|
|
1376
|
-
strategy: "
|
|
1376
|
+
strategy: "fill-first",
|
|
1377
1377
|
startTime: new Date().toISOString(),
|
|
1378
1378
|
managedBy: "launchd",
|
|
1379
1379
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "9.36.
|
|
3
|
+
"version": "9.36.1",
|
|
4
4
|
"description": "Universal AI Development Platform with working MCP integration, multi-provider support, and professional CLI. Built-in tools operational, 58+ external MCP servers discoverable. Connect to filesystem, GitHub, database operations, and more. Build, test, and deploy AI applications with 13 providers: OpenAI, Anthropic, Google AI, AWS Bedrock, Azure, Hugging Face, Ollama, and Mistral AI.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Juspay Technologies",
|