@juspay/neurolink 7.39.0 → 7.40.0

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 CHANGED
@@ -1,3 +1,9 @@
1
+ ## [7.40.0](https://github.com/juspay/neurolink/compare/v7.39.0...v7.40.0) (2025-09-17)
2
+
3
+ ### Features
4
+
5
+ - **(envsetup):** Added env setup test ([d08917e](https://github.com/juspay/neurolink/commit/d08917e69675aedd468c25697250c24fbfa21372))
6
+
1
7
  ## [7.39.0](https://github.com/juspay/neurolink/compare/v7.38.1...v7.39.0) (2025-09-16)
2
8
 
3
9
  ### Features
package/README.md CHANGED
@@ -307,6 +307,18 @@ echo 'GOOGLE_VERTEX_LOCATION="us-central1"' >> .env
307
307
 
308
308
  # Test configuration
309
309
  npx @juspay/neurolink status
310
+
311
+ # SDK Env Provider Check - Advanced provider testing with fallback detection
312
+ pnpm run test:providers
313
+ ```
314
+
315
+ #### 🔍 SDK Env Provider Check Output
316
+
317
+ ```bash
318
+ # Example output:
319
+ ✅ Google AI: Working (197 tokens)
320
+ ⚠️ OpenAI: Failed (Fallback to google-ai)
321
+ ⚠️ AWS Bedrock: Failed (Fallback to google-ai)
310
322
  ```
311
323
 
312
324
  ### JSON Format Support (Complete)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/neurolink",
3
- "version": "7.39.0",
3
+ "version": "7.40.0",
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 9 major providers: OpenAI, Anthropic, Google AI, AWS Bedrock, Azure, Hugging Face, Ollama, and Mistral AI.",
5
5
  "author": {
6
6
  "name": "Juspay Technologies",
@@ -62,7 +62,7 @@
62
62
  "convert:specific": "node tools/automation/shellConverter.js --specific",
63
63
  "// Testing (Enhanced & Adaptive)": "",
64
64
  "test:smart": "node tools/testing/adaptiveTestRunner.js",
65
- "test:providers": "node tools/testing/providerValidator.js",
65
+ "test:providers": "node test/environment-setup.js",
66
66
  "test:performance": "node tools/testing/performanceMonitor.js",
67
67
  "test:coverage": "vitest run --coverage",
68
68
  "test:ci": "pnpm run test:smart && pnpm run test:coverage",