@juspay/neurolink 8.0.1 → 8.1.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 +6 -0
- package/dist/constants/enums.d.ts +1 -0
- package/dist/constants/enums.js +2 -0
- package/dist/lib/constants/enums.d.ts +1 -0
- package/dist/lib/constants/enums.js +2 -0
- package/dist/lib/providers/googleVertex.js +1 -0
- package/dist/providers/googleVertex.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [8.1.0](https://github.com/juspay/neurolink/compare/v8.0.1...v8.1.0) (2025-11-20)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **(vertex):** add gemini-3-pro-preview model support ([896dc73](https://github.com/juspay/neurolink/commit/896dc73f017cf2c5c3a1cdbfa1806027e6acad4a))
|
|
6
|
+
|
|
1
7
|
## [8.0.1](https://github.com/juspay/neurolink/compare/v8.0.0...v8.0.1) (2025-11-20)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
|
@@ -48,6 +48,7 @@ export declare enum VertexModels {
|
|
|
48
48
|
CLAUDE_3_SONNET = "claude-3-sonnet-20240229",
|
|
49
49
|
CLAUDE_3_OPUS = "claude-3-opus-20240229",
|
|
50
50
|
CLAUDE_3_HAIKU = "claude-3-haiku-20240307",
|
|
51
|
+
GEMINI_3_PRO_PREVIEW = "gemini-3-pro-preview",
|
|
51
52
|
GEMINI_2_5_PRO = "gemini-2.5-pro",
|
|
52
53
|
GEMINI_2_5_FLASH = "gemini-2.5-flash",
|
|
53
54
|
GEMINI_2_5_FLASH_LITE = "gemini-2.5-flash-lite",
|
package/dist/constants/enums.js
CHANGED
|
@@ -58,6 +58,8 @@ export var VertexModels;
|
|
|
58
58
|
VertexModels["CLAUDE_3_SONNET"] = "claude-3-sonnet-20240229";
|
|
59
59
|
VertexModels["CLAUDE_3_OPUS"] = "claude-3-opus-20240229";
|
|
60
60
|
VertexModels["CLAUDE_3_HAIKU"] = "claude-3-haiku-20240307";
|
|
61
|
+
// Gemini 3 Series (Preview)
|
|
62
|
+
VertexModels["GEMINI_3_PRO_PREVIEW"] = "gemini-3-pro-preview";
|
|
61
63
|
// Gemini 2.5 Series (Latest - 2025)
|
|
62
64
|
VertexModels["GEMINI_2_5_PRO"] = "gemini-2.5-pro";
|
|
63
65
|
VertexModels["GEMINI_2_5_FLASH"] = "gemini-2.5-flash";
|
|
@@ -48,6 +48,7 @@ export declare enum VertexModels {
|
|
|
48
48
|
CLAUDE_3_SONNET = "claude-3-sonnet-20240229",
|
|
49
49
|
CLAUDE_3_OPUS = "claude-3-opus-20240229",
|
|
50
50
|
CLAUDE_3_HAIKU = "claude-3-haiku-20240307",
|
|
51
|
+
GEMINI_3_PRO_PREVIEW = "gemini-3-pro-preview",
|
|
51
52
|
GEMINI_2_5_PRO = "gemini-2.5-pro",
|
|
52
53
|
GEMINI_2_5_FLASH = "gemini-2.5-flash",
|
|
53
54
|
GEMINI_2_5_FLASH_LITE = "gemini-2.5-flash-lite",
|
|
@@ -58,6 +58,8 @@ export var VertexModels;
|
|
|
58
58
|
VertexModels["CLAUDE_3_SONNET"] = "claude-3-sonnet-20240229";
|
|
59
59
|
VertexModels["CLAUDE_3_OPUS"] = "claude-3-opus-20240229";
|
|
60
60
|
VertexModels["CLAUDE_3_HAIKU"] = "claude-3-haiku-20240307";
|
|
61
|
+
// Gemini 3 Series (Preview)
|
|
62
|
+
VertexModels["GEMINI_3_PRO_PREVIEW"] = "gemini-3-pro-preview";
|
|
61
63
|
// Gemini 2.5 Series (Latest - 2025)
|
|
62
64
|
VertexModels["GEMINI_2_5_PRO"] = "gemini-2.5-pro";
|
|
63
65
|
VertexModels["GEMINI_2_5_FLASH"] = "gemini-2.5-flash";
|
|
@@ -1398,6 +1398,7 @@ export class GoogleVertexProvider extends BaseProvider {
|
|
|
1398
1398
|
getModelSuggestions(requestedModel) {
|
|
1399
1399
|
const availableModels = {
|
|
1400
1400
|
google: [
|
|
1401
|
+
"gemini-3-pro-preview",
|
|
1401
1402
|
"gemini-2.5-pro",
|
|
1402
1403
|
"gemini-2.5-flash",
|
|
1403
1404
|
"gemini-2.5-flash-lite",
|
|
@@ -1398,6 +1398,7 @@ export class GoogleVertexProvider extends BaseProvider {
|
|
|
1398
1398
|
getModelSuggestions(requestedModel) {
|
|
1399
1399
|
const availableModels = {
|
|
1400
1400
|
google: [
|
|
1401
|
+
"gemini-3-pro-preview",
|
|
1401
1402
|
"gemini-2.5-pro",
|
|
1402
1403
|
"gemini-2.5-flash",
|
|
1403
1404
|
"gemini-2.5-flash-lite",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "8.0
|
|
3
|
+
"version": "8.1.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",
|