@juspay/neurolink 7.6.0 → 7.6.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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [7.6.1](https://github.com/juspay/neurolink/compare/v7.6.0...v7.6.1) (2025-08-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **docs:** resolve documentation deployment and broken links ([e78d7e8](https://github.com/juspay/neurolink/commit/e78d7e8da6ff16ee266a88beec70a26b67145da2))
7
+
1
8
  # [7.6.0](https://github.com/juspay/neurolink/compare/v7.5.0...v7.6.0) (2025-08-09)
2
9
 
3
10
 
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![NPM Version](https://img.shields.io/npm/v/@juspay/neurolink)](https://www.npmjs.com/package/@juspay/neurolink)
4
4
  [![Downloads](https://img.shields.io/npm/dm/@juspay/neurolink)](https://www.npmjs.com/package/@juspay/neurolink)
5
5
  [![GitHub Stars](https://img.shields.io/github/stars/juspay/neurolink)](https://github.com/juspay/neurolink/stargazers)
6
- [![License](https://img.shields.io/npm/l/@juspay/neurolink)](https://github.com/juspay/neurolink/blob/main/LICENSE)
6
+ [![License](https://img.shields.io/npm/l/@juspay/neurolink)](https://github.com/juspay/neurolink/blob/release/LICENSE)
7
7
  [![TypeScript](https://img.shields.io/badge/TypeScript-Ready-blue)](https://www.typescriptlang.org/)
8
8
  [![CI](https://github.com/juspay/neurolink/workflows/CI/badge.svg)](https://github.com/juspay/neurolink/actions)
9
9
 
@@ -44,7 +44,7 @@ export class DynamicModelProvider {
44
44
  async initialize() {
45
45
  const sources = [
46
46
  process.env.MODEL_CONFIG_URL || "http://localhost:3001/api/v1/models",
47
- "https://raw.githubusercontent.com/sachinsharma92/neurolink/main/config/models.json",
47
+ `https://raw.githubusercontent.com/${process.env.MODEL_CONFIG_GITHUB_REPO || "juspay/neurolink"}/${process.env.MODEL_CONFIG_GITHUB_BRANCH || "release"}/config/models.json`,
48
48
  "./config/models.json", // Local fallback
49
49
  ];
50
50
  for (const source of sources) {
@@ -76,7 +76,7 @@ export class DynamicModelProvider {
76
76
  // Load from URL
77
77
  const response = await fetch(source, {
78
78
  headers: {
79
- "User-Agent": "NeuroLink/1.0 (+https://github.com/sachinsharma92/neurolink)",
79
+ "User-Agent": "NeuroLink/1.0 (+https://github.com/juspay/neurolink)",
80
80
  },
81
81
  });
82
82
  if (!response.ok) {
@@ -44,7 +44,7 @@ export class DynamicModelProvider {
44
44
  async initialize() {
45
45
  const sources = [
46
46
  process.env.MODEL_CONFIG_URL || "http://localhost:3001/api/v1/models",
47
- "https://raw.githubusercontent.com/sachinsharma92/neurolink/main/config/models.json",
47
+ `https://raw.githubusercontent.com/${process.env.MODEL_CONFIG_GITHUB_REPO || "juspay/neurolink"}/${process.env.MODEL_CONFIG_GITHUB_BRANCH || "release"}/config/models.json`,
48
48
  "./config/models.json", // Local fallback
49
49
  ];
50
50
  for (const source of sources) {
@@ -76,7 +76,7 @@ export class DynamicModelProvider {
76
76
  // Load from URL
77
77
  const response = await fetch(source, {
78
78
  headers: {
79
- "User-Agent": "NeuroLink/1.0 (+https://github.com/sachinsharma92/neurolink)",
79
+ "User-Agent": "NeuroLink/1.0 (+https://github.com/juspay/neurolink)",
80
80
  },
81
81
  });
82
82
  if (!response.ok) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/neurolink",
3
- "version": "7.6.0",
3
+ "version": "7.6.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 9 major providers: OpenAI, Anthropic, Google AI, AWS Bedrock, Azure, Hugging Face, Ollama, and Mistral AI.",
5
5
  "author": {
6
6
  "name": "Juspay Technologies",