From 85c548d0d3f88dbad0e13c41c5add6444b28f97d Mon Sep 17 00:00:00 2001 From: Reynaldi Chernando <12949382+reynaldichernando@users.noreply.github.com> Date: Tue, 16 Dec 2025 07:11:25 +0700 Subject: [PATCH] Fix speech2speech options (#2133) --- src/puter-js/types/modules/ai.d.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/puter-js/types/modules/ai.d.ts b/src/puter-js/types/modules/ai.d.ts index 85a63f943..b997afd07 100644 --- a/src/puter-js/types/modules/ai.d.ts +++ b/src/puter-js/types/modules/ai.d.ts @@ -158,24 +158,14 @@ export interface Speech2SpeechOptions { file?: string | File | Blob; provider?: string; model?: string; - modelId?: string; - model_id?: string; voice?: string; - voiceId?: string; - voice_id?: string; output_format?: string; - outputFormat?: string; voice_settings?: Record; - voiceSettings?: Record; seed?: number; file_format?: string; - fileFormat?: string; remove_background_noise?: boolean; - removeBackgroundNoise?: boolean; optimize_streaming_latency?: number; - optimizeStreamingLatency?: number; enable_logging?: boolean; - enableLogging?: boolean; test_mode?: boolean; }