@crewdle/web-sdk-types 1.0.53 → 1.0.54
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 +6 -2
- package/dist/generative-ai/jobs/inference/GenerativeAIInferenceJob.d.ts +6 -2
- package/dist/generative-ai/jobs/inference/GenerativeAIInferenceWorkerParameters.d.ts +6 -2
- package/dist/generative-ai/jobs/prompt/GenerativeAIPromptOptions.d.ts +6 -2
- package/package.json +1 -1
|
@@ -40,9 +40,13 @@ export interface IGenerativeAIInferenceCreateJobParameters extends IGenerativeAI
|
|
|
40
40
|
*/
|
|
41
41
|
grammar?: any;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Reasoning effort for the AI job.
|
|
44
44
|
*/
|
|
45
|
-
reasoning?:
|
|
45
|
+
reasoning?: string;
|
|
46
|
+
/**
|
|
47
|
+
* Verbosity for the AI job.
|
|
48
|
+
*/
|
|
49
|
+
verbosity?: string;
|
|
46
50
|
/**
|
|
47
51
|
* The privacy flag for the AI job.
|
|
48
52
|
*/
|
|
@@ -35,9 +35,13 @@ export interface IGenerativeAIInferenceJob extends IGenerativeAIJob {
|
|
|
35
35
|
*/
|
|
36
36
|
grammar?: any;
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* Reasoning effort for the AI job.
|
|
39
39
|
*/
|
|
40
|
-
reasoning?:
|
|
40
|
+
reasoning?: string;
|
|
41
|
+
/**
|
|
42
|
+
* Verbosity for the AI job.
|
|
43
|
+
*/
|
|
44
|
+
verbosity?: string;
|
|
41
45
|
/**
|
|
42
46
|
* The privacy flag for the AI job.
|
|
43
47
|
*/
|
|
@@ -39,9 +39,13 @@ export interface IGenerativeAIInferenceWorkerParameters extends IGenerativeAIWor
|
|
|
39
39
|
*/
|
|
40
40
|
grammar?: any;
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* Reasoning effort for the AI job.
|
|
43
43
|
*/
|
|
44
|
-
reasoning?:
|
|
44
|
+
reasoning?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Verbosity for the AI job.
|
|
47
|
+
*/
|
|
48
|
+
verbosity?: string;
|
|
45
49
|
/**
|
|
46
50
|
* The privacy flag for the AI job.
|
|
47
51
|
*/
|
|
@@ -33,9 +33,13 @@ export interface IGenerativeAIPromptOptions extends IGenerativeAIOptions {
|
|
|
33
33
|
*/
|
|
34
34
|
grammar?: any;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Reasoning effort for the AI job.
|
|
37
37
|
*/
|
|
38
|
-
reasoning?:
|
|
38
|
+
reasoning?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Verbosity for the AI job.
|
|
41
|
+
*/
|
|
42
|
+
verbosity?: string;
|
|
39
43
|
/**
|
|
40
44
|
* The privacy flag for the AI job.
|
|
41
45
|
*/
|