@juspay/neurolink 8.4.1 → 8.5.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
+ ## [8.5.0](https://github.com/juspay/neurolink/compare/v8.4.1...v8.5.0) (2025-12-04)
2
+
3
+ ### Features
4
+
5
+ - **(audio):** add AudioProcessorOptions type for audio transcription configuration ([b969ba9](https://github.com/juspay/neurolink/commit/b969ba95daf6cbcc63d94f10d632a1e977726d52))
6
+
1
7
  ## [8.4.1](https://github.com/juspay/neurolink/compare/v8.4.0...v8.4.1) (2025-12-04)
2
8
 
3
9
  ### Bug Fixes
@@ -4,7 +4,7 @@
4
4
  /**
5
5
  * Supported file types for multimodal input
6
6
  */
7
- export type FileType = "csv" | "image" | "pdf" | "text" | "unknown";
7
+ export type FileType = "csv" | "image" | "pdf" | "audio" | "text" | "unknown";
8
8
  /**
9
9
  * File input can be Buffer or string (path/URL/data URI)
10
10
  */
@@ -91,6 +91,23 @@ export type FileDetectorOptions = {
91
91
  confidenceThreshold?: number;
92
92
  provider?: string;
93
93
  };
94
+ /**
95
+ * Audio processor options for transcription configuration
96
+ */
97
+ export type AudioProcessorOptions = {
98
+ /** AI provider to use for transcription (e.g., 'openai', 'google', 'azure') */
99
+ provider?: string;
100
+ /** Transcription model to use (e.g., 'whisper-1', 'chirp-3') */
101
+ transcriptionModel?: string;
102
+ /** Language code for transcription (e.g., 'en', 'es', 'fr') */
103
+ language?: string;
104
+ /** Context or prompt to guide transcription accuracy */
105
+ prompt?: string;
106
+ /** Maximum audio duration in seconds (default: 600) */
107
+ maxDurationSeconds?: number;
108
+ /** Maximum file size in megabytes */
109
+ maxSizeMB?: number;
110
+ };
94
111
  /**
95
112
  * Google AI Studio Files API types
96
113
  */
@@ -4,7 +4,7 @@
4
4
  /**
5
5
  * Supported file types for multimodal input
6
6
  */
7
- export type FileType = "csv" | "image" | "pdf" | "text" | "unknown";
7
+ export type FileType = "csv" | "image" | "pdf" | "audio" | "text" | "unknown";
8
8
  /**
9
9
  * File input can be Buffer or string (path/URL/data URI)
10
10
  */
@@ -91,6 +91,23 @@ export type FileDetectorOptions = {
91
91
  confidenceThreshold?: number;
92
92
  provider?: string;
93
93
  };
94
+ /**
95
+ * Audio processor options for transcription configuration
96
+ */
97
+ export type AudioProcessorOptions = {
98
+ /** AI provider to use for transcription (e.g., 'openai', 'google', 'azure') */
99
+ provider?: string;
100
+ /** Transcription model to use (e.g., 'whisper-1', 'chirp-3') */
101
+ transcriptionModel?: string;
102
+ /** Language code for transcription (e.g., 'en', 'es', 'fr') */
103
+ language?: string;
104
+ /** Context or prompt to guide transcription accuracy */
105
+ prompt?: string;
106
+ /** Maximum audio duration in seconds (default: 600) */
107
+ maxDurationSeconds?: number;
108
+ /** Maximum file size in megabytes */
109
+ maxSizeMB?: number;
110
+ };
94
111
  /**
95
112
  * Google AI Studio Files API types
96
113
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/neurolink",
3
- "version": "8.4.1",
3
+ "version": "8.5.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",