@juspay/neurolink 9.65.0 → 9.65.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/agent/directTools.js +11 -3
- package/dist/browser/neurolink.min.js +352 -352
- package/dist/core/constants.d.ts +1 -0
- package/dist/core/constants.js +3 -0
- package/dist/core/redisConversationMemoryManager.js +0 -6
- package/dist/lib/agent/directTools.js +11 -3
- package/dist/lib/core/constants.d.ts +1 -0
- package/dist/lib/core/constants.js +3 -0
- package/dist/lib/core/redisConversationMemoryManager.js +0 -6
- package/dist/lib/providers/googleAiStudio.js +82 -5
- package/dist/lib/providers/googleNativeGemini3.d.ts +2 -5
- package/dist/lib/providers/googleNativeGemini3.js +103 -8
- package/dist/lib/providers/googleVertex.js +466 -164
- package/dist/lib/types/conversation.d.ts +16 -0
- package/dist/providers/googleAiStudio.js +82 -5
- package/dist/providers/googleNativeGemini3.d.ts +2 -5
- package/dist/providers/googleNativeGemini3.js +103 -8
- package/dist/providers/googleVertex.js +466 -164
- package/dist/types/conversation.d.ts +16 -0
- package/package.json +1 -1
|
@@ -544,3 +544,19 @@ export type ProviderDetails = {
|
|
|
544
544
|
provider: string;
|
|
545
545
|
model: string;
|
|
546
546
|
};
|
|
547
|
+
/**
|
|
548
|
+
* Reduced ChatMessage shape used by callers (typically tests and history
|
|
549
|
+
* reconstructors) that pass synthetic entries into the Gemini history
|
|
550
|
+
* reconstructor without filling every `ChatMessage` field. Mirrors the
|
|
551
|
+
* fields actually read by `prependConversationMessages`.
|
|
552
|
+
*/
|
|
553
|
+
export type MinimalChatMessage = {
|
|
554
|
+
role: ChatMessage["role"];
|
|
555
|
+
content: string;
|
|
556
|
+
tool?: string;
|
|
557
|
+
args?: Record<string, unknown>;
|
|
558
|
+
metadata?: {
|
|
559
|
+
stepIndex?: number;
|
|
560
|
+
thoughtSignature?: string;
|
|
561
|
+
};
|
|
562
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "9.65.
|
|
3
|
+
"version": "9.65.1",
|
|
4
4
|
"packageManager": "pnpm@10.15.1",
|
|
5
5
|
"description": "Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applications with 21+ providers: OpenAI, Anthropic, Google AI Studio, Google Vertex, AWS Bedrock, Azure OpenAI, Mistral, LiteLLM, SageMaker, Hugging Face, Ollama, OpenAI-compatible, OpenRouter, DeepSeek, NVIDIA NIM, LM Studio, llama.cpp, plus voice (OpenAI TTS, ElevenLabs, Deepgram, Azure Speech).",
|
|
6
6
|
"author": {
|