@juspay/neurolink 9.55.3 → 9.55.4
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/dist/types/server.d.ts
CHANGED
|
@@ -1109,3 +1109,13 @@ export type SonioxMessage = {
|
|
|
1109
1109
|
export type ClientControlMessage = {
|
|
1110
1110
|
type?: string;
|
|
1111
1111
|
};
|
|
1112
|
+
/**
|
|
1113
|
+
* Structural type for Picovoice Cobra VAD instance.
|
|
1114
|
+
* Defined here so the optional `@picovoice/cobra-node` package
|
|
1115
|
+
* is not required at typecheck time.
|
|
1116
|
+
*/
|
|
1117
|
+
export type CobraInstance = {
|
|
1118
|
+
frameLength: number;
|
|
1119
|
+
process: (pcm: Int16Array) => number;
|
|
1120
|
+
release: () => void;
|
|
1121
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "9.55.
|
|
3
|
+
"version": "9.55.4",
|
|
4
4
|
"packageManager": "pnpm@10.15.1",
|
|
5
5
|
"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 13 providers: OpenAI, Anthropic, Google AI, AWS Bedrock, Azure, Hugging Face, Ollama, and Mistral AI.",
|
|
6
6
|
"author": {
|
|
@@ -224,7 +224,6 @@
|
|
|
224
224
|
"@opentelemetry/sdk-metrics": "^2.6.1",
|
|
225
225
|
"@opentelemetry/sdk-trace-base": "^2.6.0",
|
|
226
226
|
"@opentelemetry/semantic-conventions": "^1.40.0",
|
|
227
|
-
"@picovoice/cobra-node": "^3.0.2",
|
|
228
227
|
"adm-zip": "^0.5.16",
|
|
229
228
|
"ai": "^6.0.134",
|
|
230
229
|
"chalk": "^5.6.2",
|
|
@@ -272,6 +271,7 @@
|
|
|
272
271
|
"optionalDependencies": {
|
|
273
272
|
"@aws-sdk/client-sagemaker": "^3.1000.0",
|
|
274
273
|
"@langfuse/otel": "^5.0.1",
|
|
274
|
+
"@picovoice/cobra-node": "^3.0.2",
|
|
275
275
|
"bullmq": "^5.52.2",
|
|
276
276
|
"pdf-parse": "^2.4.5",
|
|
277
277
|
"pdf-to-img": "^5.0.0",
|