@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.
- package/dist/generative-ai/jobs/inference/GenerativeAIInferenceCreateJobParameters.d.ts +4 -0
- package/dist/generative-ai/jobs/inference/GenerativeAIInferenceJob.d.ts +4 -0
- package/dist/generative-ai/jobs/inference/GenerativeAIInferenceWorkerParameters.d.ts +4 -0
- package/dist/generative-ai/jobs/prompt/GenerativeAIPromptCreateJobParameters.d.ts +4 -0
- package/dist/generative-ai/jobs/prompt/GenerativeAIPromptJob.d.ts +4 -0
- package/dist/generative-ai/jobs/prompt/GenerativeAIPromptOptions.d.ts +28 -0
- package/dist/generative-ai/jobs/realtime-session-create/GenerativeAIRealtimeSessionCreateResult.d.ts +8 -0
- package/package.json +1 -1
|
@@ -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
|
*/
|
|
@@ -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
|
*/
|
package/dist/generative-ai/jobs/realtime-session-create/GenerativeAIRealtimeSessionCreateResult.d.ts
CHANGED
|
@@ -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
|
*/
|