@juspay/neurolink 9.88.10 β 9.88.12
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 +12 -0
- package/README.md +26 -26
- package/dist/browser/neurolink.min.js +246 -246
- package/dist/cli/commands/proxy.js +196 -60
- package/dist/lib/proxy/globalInstaller.d.ts +7 -1
- package/dist/lib/proxy/globalInstaller.js +49 -1
- package/dist/lib/proxy/updateState.d.ts +8 -0
- package/dist/lib/proxy/updateState.js +73 -1
- package/dist/lib/proxy/updaterSupervisor.d.ts +3 -0
- package/dist/lib/proxy/updaterSupervisor.js +58 -0
- package/dist/lib/proxy/usageStats.d.ts +1 -1
- package/dist/lib/proxy/usageStats.js +20 -2
- package/dist/lib/server/routes/claudeProxyRoutes.d.ts +2 -10
- package/dist/lib/server/routes/claudeProxyRoutes.js +68 -21
- package/dist/lib/types/proxy.d.ts +69 -1
- package/dist/proxy/globalInstaller.d.ts +7 -1
- package/dist/proxy/globalInstaller.js +49 -1
- package/dist/proxy/updateState.d.ts +8 -0
- package/dist/proxy/updateState.js +73 -1
- package/dist/proxy/updaterSupervisor.d.ts +3 -0
- package/dist/proxy/updaterSupervisor.js +57 -0
- package/dist/proxy/usageStats.d.ts +1 -1
- package/dist/proxy/usageStats.js +20 -2
- package/dist/server/routes/claudeProxyRoutes.d.ts +2 -10
- package/dist/server/routes/claudeProxyRoutes.js +68 -21
- package/dist/types/proxy.d.ts +69 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [9.88.12](https://github.com/juspay/neurolink/compare/v9.88.11...v9.88.12) (2026-07-16)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **(marketing):** correct provider count to 30+ and retire unbacked claims ([0db46ca](https://github.com/juspay/neurolink/commit/0db46ca5e49708c16805290d801d314cd6346e5c))
|
|
6
|
+
|
|
7
|
+
## [9.88.11](https://github.com/juspay/neurolink/compare/v9.88.10...v9.88.11) (2026-07-16)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **(proxy):** make updater and stats self-consistent ([a8b4b78](https://github.com/juspay/neurolink/commit/a8b4b7873692564a4f368b192eb52537beb73f71))
|
|
12
|
+
|
|
1
13
|
## [9.88.10](https://github.com/juspay/neurolink/compare/v9.88.9...v9.88.10) (2026-07-16)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -32,9 +32,9 @@ for await (const chunk of result.stream) {
|
|
|
32
32
|
|
|
33
33
|
## π§ What is NeuroLink?
|
|
34
34
|
|
|
35
|
-
**NeuroLink is the universal AI integration platform that unifies
|
|
35
|
+
**NeuroLink is the universal AI integration platform that unifies 30+ AI providers and 100+ models under one consistent API.**
|
|
36
36
|
|
|
37
|
-
Extracted from production systems at Juspay
|
|
37
|
+
Extracted from production systems at Juspay, NeuroLink provides a practical, TypeScript-first way to integrate AI into any application. Whether you're building with OpenAI, Anthropic, Google, AWS Bedrock, Azure, or any of our 30+ supported providers, NeuroLink gives you a single, consistent interface that works everywhere.
|
|
38
38
|
|
|
39
39
|
**Why NeuroLink?** Switch providers with a single parameter change, leverage 64+ built-in tools and MCP servers, deploy with confidence using enterprise features like Redis memory and multi-provider failover, and optimize costs automatically with intelligent routing. Use it via our professional CLI or TypeScript SDKβwhichever fits your workflow.
|
|
40
40
|
|
|
@@ -170,14 +170,14 @@ const neurolink = new NeuroLink({
|
|
|
170
170
|
|
|
171
171
|
## Enterprise Security: Human-in-the-Loop (HITL)
|
|
172
172
|
|
|
173
|
-
NeuroLink includes a **
|
|
173
|
+
NeuroLink includes a **HITL (Human-in-the-Loop) system** for regulated industries and high-stakes AI operations:
|
|
174
174
|
|
|
175
|
-
| Capability | Description
|
|
176
|
-
| --------------------------- |
|
|
177
|
-
| **Tool Approval Workflows** | Require human approval before AI executes sensitive tools
|
|
178
|
-
| **Output Validation** | Route AI outputs through human review pipelines
|
|
179
|
-
| **Confidence Thresholds** | Automatically trigger human review below confidence level
|
|
180
|
-
| **Complete Audit Trail** |
|
|
175
|
+
| Capability | Description | Use Case |
|
|
176
|
+
| --------------------------- | ----------------------------------------------------------------------- | ------------------------------------------ |
|
|
177
|
+
| **Tool Approval Workflows** | Require human approval before AI executes sensitive tools | Financial transactions, data modifications |
|
|
178
|
+
| **Output Validation** | Route AI outputs through human review pipelines | Medical diagnosis, legal documents |
|
|
179
|
+
| **Confidence Thresholds** | Automatically trigger human review below confidence level | Critical business decisions |
|
|
180
|
+
| **Complete Audit Trail** | Audit logging to support your compliance program (HIPAA / SOC 2 / GDPR) | Regulated industries |
|
|
181
181
|
|
|
182
182
|
```typescript
|
|
183
183
|
import { NeuroLink } from "@juspay/neurolink";
|
|
@@ -226,7 +226,7 @@ npx @juspay/neurolink --help
|
|
|
226
226
|
|
|
227
227
|
### Configuration
|
|
228
228
|
|
|
229
|
-
NeuroLink works with
|
|
229
|
+
NeuroLink works with 30+ AI providers. You'll need at least one API key to get started:
|
|
230
230
|
|
|
231
231
|
**Option 1: Interactive Setup (Recommended)**
|
|
232
232
|
|
|
@@ -413,7 +413,7 @@ const result = await neurolink.generate({
|
|
|
413
413
|
### Next Steps
|
|
414
414
|
|
|
415
415
|
- **[Complete Documentation](https://docs.neurolink.ink)** - Comprehensive guides and API reference
|
|
416
|
-
- **[Provider Setup Guide](docs/getting-started/provider-setup.md)** - Configure all
|
|
416
|
+
- **[Provider Setup Guide](docs/getting-started/provider-setup.md)** - Configure all 30+ providers
|
|
417
417
|
- **[SDK API Reference](docs/sdk/api-reference.md)** - Full TypeScript API documentation
|
|
418
418
|
- **[CLI Command Reference](docs/cli/commands.md)** - Complete CLI documentation
|
|
419
419
|
- **[Example Projects](docs/examples/index.md)** - Real-world integration examples
|
|
@@ -441,11 +441,11 @@ Need help? Check our [Troubleshooting Guide](docs/reference/troubleshooting.md)
|
|
|
441
441
|
|
|
442
442
|
## π Complete Feature Set
|
|
443
443
|
|
|
444
|
-
NeuroLink is a comprehensive AI development platform. Every feature below is
|
|
444
|
+
NeuroLink is a comprehensive AI development platform. Every feature below is shipped and documented.
|
|
445
445
|
|
|
446
446
|
### π€ AI Provider Integration
|
|
447
447
|
|
|
448
|
-
**
|
|
448
|
+
**30+ providers unified under one API** - Switch providers with a single parameter change.
|
|
449
449
|
|
|
450
450
|
| Provider | Models | Free Tier | Tool Support | Status | Documentation |
|
|
451
451
|
| --------------------- | -------------------------------------------------------------------------- | --------------- | ------------ | ------------- | ----------------------------------------------------------------------------------------------------------------------------- |
|
|
@@ -472,7 +472,7 @@ NeuroLink is a comprehensive AI development platform. Every feature below is pro
|
|
|
472
472
|
| **Azure Speech** | Azure Cognitive Services TTS + STT | β | N/A | β
Production | [Setup Guide](docs/getting-started/provider-setup.md#azure-speech) |
|
|
473
473
|
|
|
474
474
|
**[π Provider Comparison Guide](docs/reference/provider-comparison.md)** - Detailed feature matrix and selection criteria
|
|
475
|
-
**[π¬ Provider Feature Compatibility](docs/reference/provider-feature-compatibility.md)** - Test-based compatibility reference for all 19 features across
|
|
475
|
+
**[π¬ Provider Feature Compatibility](docs/reference/provider-feature-compatibility.md)** - Test-based compatibility reference for all 19 features across 30+ providers
|
|
476
476
|
|
|
477
477
|
---
|
|
478
478
|
|
|
@@ -628,7 +628,7 @@ const result = await neurolink.generate({
|
|
|
628
628
|
- **ProcessorRegistry** - Priority-based processor selection with fallback
|
|
629
629
|
- **OWASP Security** - HTML/SVG sanitization prevents XSS attacks
|
|
630
630
|
- **Auto-detection** - FileDetector identifies file types by extension and content
|
|
631
|
-
- **Provider-agnostic** - All processors work across all
|
|
631
|
+
- **Provider-agnostic** - All processors work across all 30+ AI providers
|
|
632
632
|
|
|
633
633
|
**[π File Processors Guide](docs/features/file-processors.md)** - Complete reference for all file types
|
|
634
634
|
|
|
@@ -636,7 +636,7 @@ const result = await neurolink.generate({
|
|
|
636
636
|
|
|
637
637
|
### π’ Enterprise & Production Features
|
|
638
638
|
|
|
639
|
-
**
|
|
639
|
+
**Capabilities for regulated industries:**
|
|
640
640
|
|
|
641
641
|
| Feature | Description | Use Case | Documentation |
|
|
642
642
|
| --------------------------- | ------------------------------------------- | ------------------------- | ----------------------------------------------------------- |
|
|
@@ -652,10 +652,10 @@ const result = await neurolink.generate({
|
|
|
652
652
|
|
|
653
653
|
**Security & Compliance:**
|
|
654
654
|
|
|
655
|
-
- β
|
|
656
|
-
- β
ISO 27001
|
|
657
|
-
- β
GDPR-
|
|
658
|
-
- β
HIPAA
|
|
655
|
+
- β
Deployable within SOC 2 Type II environments β NeuroLink itself is not audited or certified
|
|
656
|
+
- β
Deployable on ISO 27001-certified infrastructure β the certification is your infrastructure's, not NeuroLink's
|
|
657
|
+
- β
Supports GDPR-conscious data handling (EU-region providers selectable; you own compliance)
|
|
658
|
+
- β
Deployable in HIPAA-aligned configurations β you are responsible for a compliant setup
|
|
659
659
|
- β
Hardened OS verified (SELinux, AppArmor)
|
|
660
660
|
- β
Zero credential logging
|
|
661
661
|
- β
Encrypted configuration storage
|
|
@@ -667,7 +667,7 @@ const result = await neurolink.generate({
|
|
|
667
667
|
|
|
668
668
|
## Enterprise Persistence: Redis Memory
|
|
669
669
|
|
|
670
|
-
|
|
670
|
+
Distributed conversation state for multi-instance deployments:
|
|
671
671
|
|
|
672
672
|
### Capabilities
|
|
673
673
|
|
|
@@ -758,7 +758,7 @@ node your-app.js
|
|
|
758
758
|
|
|
759
759
|
### π€ GitHub Action
|
|
760
760
|
|
|
761
|
-
Run AI-powered workflows directly in GitHub Actions with
|
|
761
|
+
Run AI-powered workflows directly in GitHub Actions with 30+ provider support and automatic PR/issue commenting.
|
|
762
762
|
|
|
763
763
|
```yaml
|
|
764
764
|
- uses: juspay/neurolink@v1
|
|
@@ -770,7 +770,7 @@ Run AI-powered workflows directly in GitHub Actions with 24+ provider support an
|
|
|
770
770
|
|
|
771
771
|
| Feature | Description |
|
|
772
772
|
| ---------------------- | ----------------------------------------------------------------------------------------- |
|
|
773
|
-
| **Multi-Provider** |
|
|
773
|
+
| **Multi-Provider** | 30+ providers with unified interface |
|
|
774
774
|
| **PR/Issue Comments** | Auto-post AI responses with intelligent updates |
|
|
775
775
|
| **Multimodal Support** | Attach images, PDFs, CSVs, Excel, Word, JSON, YAML, XML, HTML, SVG, code files to prompts |
|
|
776
776
|
| **Cost Tracking** | Built-in analytics and quality evaluation |
|
|
@@ -963,7 +963,7 @@ Full command and API breakdown lives in [`docs/cli/commands.md`](docs/cli/comman
|
|
|
963
963
|
|
|
964
964
|
| Capability | Highlights |
|
|
965
965
|
| ------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
966
|
-
| **Provider unification** |
|
|
966
|
+
| **Provider unification** | 30+ providers with automatic fallback, cost-aware routing, `providerFallback` policy, `modelChain` config. |
|
|
967
967
|
| **Multimodal pipeline** | Stream images + CSV data + PDF documents across providers with local/remote assets. Auto-detection for mixed file types. |
|
|
968
968
|
| **Voice pipeline** | TTS (6 providers: Google, OpenAI, ElevenLabs, Azure, Fish Audio, Cartesia) + STT (4 providers) + realtime voice APIs (OpenAI Realtime, Gemini Live). |
|
|
969
969
|
| **Quality & governance** | Auto-evaluation engine (14 scorers), guardrails middleware, HITL workflows, audit logging. |
|
|
@@ -991,7 +991,7 @@ Full command and API breakdown lives in [`docs/cli/commands.md`](docs/cli/comman
|
|
|
991
991
|
|
|
992
992
|
**Enterprise Features:**
|
|
993
993
|
|
|
994
|
-
- [Enterprise HITL Guide](docs/features/enterprise-hitl.md) -
|
|
994
|
+
- [Enterprise HITL Guide](docs/features/enterprise-hitl.md) - Approval workflows for high-stakes operations
|
|
995
995
|
- [Interactive CLI Guide](docs/features/interactive-cli.md) - AI development environment
|
|
996
996
|
- [MCP Tools Showcase](docs/features/mcp-tools-showcase.md) - 58+ external tools & 6 built-in tools
|
|
997
997
|
|
|
@@ -1010,7 +1010,7 @@ Full command and API breakdown lives in [`docs/cli/commands.md`](docs/cli/comman
|
|
|
1010
1010
|
**Redis & Persistence:**
|
|
1011
1011
|
|
|
1012
1012
|
- [Redis Quick Start](docs/getting-started/redis-quickstart.md) - 5-minute setup
|
|
1013
|
-
- [Redis Configuration](docs/guides/redis-configuration.md) - Production
|
|
1013
|
+
- [Redis Configuration](docs/guides/redis-configuration.md) - Production deployment setup
|
|
1014
1014
|
- [Redis Migration](docs/guides/redis-migration.md) - Migration patterns
|
|
1015
1015
|
|
|
1016
1016
|
**Migration Guides:**
|