@d-id/client-sdk 2.0.4 → 2.0.5-staging.393

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.
@@ -280,6 +280,12 @@ export interface AgentManager {
280
280
  * Only available for Fluent streams and when there's an active video to interrupt
281
281
  */
282
282
  interrupt: (interrupt: Interrupt) => void;
283
+ /**
284
+ * Switch the STT language mid-session
285
+ * Only available for Expressive (V4) agents
286
+ * @param language - Language name or BCP-47 code (e.g. "English" or "en-US")
287
+ */
288
+ setSttLanguage: (language: string) => Promise<void>;
283
289
  /**
284
290
  * Register a handler for a client tool. When the agent's LLM calls this tool,
285
291
  * the handler executes on the client and returns the result to the LLM.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@d-id/client-sdk",
3
3
  "private": false,
4
- "version": "2.0.4",
4
+ "version": "2.0.5-staging.393",
5
5
  "type": "module",
6
6
  "description": "d-id client sdk",
7
7
  "repository": {