@crewdle/web-sdk-types 1.0.50 → 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.
@@ -43,6 +43,10 @@ export interface IGenerativeAIInferenceCreateJobParameters extends IGenerativeAI
43
43
  * Enable reasoning for the AI job.
44
44
  */
45
45
  reasoning?: boolean;
46
+ /**
47
+ * The privacy flag for the AI job.
48
+ */
49
+ privacy?: boolean;
46
50
  /**
47
51
  * The context for the AI job.
48
52
  */
@@ -38,6 +38,10 @@ export interface IGenerativeAIInferenceJob extends IGenerativeAIJob {
38
38
  * Enable reasoning for the AI job.
39
39
  */
40
40
  reasoning?: boolean;
41
+ /**
42
+ * The privacy flag for the AI job.
43
+ */
44
+ privacy?: boolean;
41
45
  /**
42
46
  * The context for the AI job.
43
47
  */
@@ -42,6 +42,10 @@ export interface IGenerativeAIInferenceWorkerParameters extends IGenerativeAIWor
42
42
  * Enable reasoning for the AI job.
43
43
  */
44
44
  reasoning?: boolean;
45
+ /**
46
+ * The privacy flag for the AI job.
47
+ */
48
+ privacy?: boolean;
45
49
  /**
46
50
  * The context for the AI job.
47
51
  */
@@ -39,6 +39,10 @@ export interface IGenerativeAIPromptCreateJobParameters extends IGenerativeAICre
39
39
  * The agent id
40
40
  */
41
41
  agentId?: string;
42
+ /**
43
+ * The privacy flag for the AI job.
44
+ */
45
+ privacy?: boolean;
42
46
  /**
43
47
  * The context for the AI job.
44
48
  */
@@ -33,6 +33,10 @@ export interface IGenerativeAIPromptJob extends IGenerativeAIJob {
33
33
  * The agent id
34
34
  */
35
35
  agentId?: string;
36
+ /**
37
+ * The privacy flag for the AI job.
38
+ */
39
+ privacy?: boolean;
36
40
  /**
37
41
  * The context for the AI job.
38
42
  */
@@ -36,6 +36,10 @@ export interface IGenerativeAIPromptOptions extends IGenerativeAIOptions {
36
36
  * Enable reasoning for the AI job.
37
37
  */
38
38
  reasoning?: boolean;
39
+ /**
40
+ * The privacy flag for the AI job.
41
+ */
42
+ privacy?: boolean;
39
43
  /**
40
44
  * The context for the AI job.
41
45
  */
@@ -54,6 +58,30 @@ export interface IGenerativeAIPromptOptions extends IGenerativeAIOptions {
54
58
  * The temperature for the LLM.
55
59
  */
56
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;
57
85
  /**
58
86
  * The functions that can be called by the LLM.
59
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.50",
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",