@dtelecom/agents-js 0.3.5 → 0.3.6

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.
@@ -214,6 +214,8 @@ interface TTSPlugin {
214
214
  defaultLanguage?: string;
215
215
  /** Close all underlying connections (WebSockets, etc.) to allow clean process exit. */
216
216
  close?(): void;
217
+ /** When true, pipeline will not prefetch next sentence TTS (single-connection providers). */
218
+ sequential?: boolean;
217
219
  }
218
220
  interface MemoryConfig {
219
221
  /** Enable persistent room memory (requires better-sqlite3, sqlite-vec, @huggingface/transformers) */
@@ -214,6 +214,8 @@ interface TTSPlugin {
214
214
  defaultLanguage?: string;
215
215
  /** Close all underlying connections (WebSockets, etc.) to allow clean process exit. */
216
216
  close?(): void;
217
+ /** When true, pipeline will not prefetch next sentence TTS (single-connection providers). */
218
+ sequential?: boolean;
217
219
  }
218
220
  interface MemoryConfig {
219
221
  /** Enable persistent room memory (requires better-sqlite3, sqlite-vec, @huggingface/transformers) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dtelecom/agents-js",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "AI voice agent framework for dTelecom rooms",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",