@crewdle/web-sdk-types 1.0.51 → 1.0.52

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.
@@ -58,6 +58,30 @@ export interface IGenerativeAIPromptOptions extends IGenerativeAIOptions {
58
58
  * The temperature for the LLM.
59
59
  */
60
60
  temperature?: number;
61
+ /**
62
+ * The voice for the LLM.
63
+ */
64
+ voice?: string;
65
+ /**
66
+ * The response format for the LLM.
67
+ */
68
+ responseFormat?: string;
69
+ /**
70
+ * The timestamp granularities for the LLM.
71
+ */
72
+ timestampGranularities?: string;
73
+ /**
74
+ * The language for the LLM.
75
+ */
76
+ language?: string;
77
+ /**
78
+ * The ratio for the LLM.
79
+ */
80
+ ratio?: string;
81
+ /**
82
+ * The duration for the LLM.
83
+ */
84
+ duration?: string;
61
85
  /**
62
86
  * The functions that can be called by the LLM.
63
87
  */
@@ -53,6 +53,14 @@ export interface IGenerativeAIRealtimeSessionAgent {
53
53
  * The initial prompt.
54
54
  */
55
55
  initialPrompt?: string;
56
+ /**
57
+ * The voice for the LLM.
58
+ */
59
+ voice?: string;
60
+ /**
61
+ * The language for the LLM.
62
+ */
63
+ language?: string;
56
64
  /**
57
65
  * The tools for the Realtime Session.
58
66
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewdle/web-sdk-types",
3
- "version": "1.0.51",
3
+ "version": "1.0.52",
4
4
  "description": "The Crewdle Mist Web SDK public types and interfaces",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",