@crewdle/web-sdk-types 1.0.58 → 1.0.59

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
  * Reasoning effort for the AI job.
44
44
  */
45
45
  reasoning?: string;
46
+ /**
47
+ * Effort level for the AI job.
48
+ */
49
+ effort?: string;
46
50
  /**
47
51
  * Verbosity for the AI job.
48
52
  */
@@ -38,6 +38,10 @@ export interface IGenerativeAIInferenceJob extends IGenerativeAIJob {
38
38
  * Reasoning effort for the AI job.
39
39
  */
40
40
  reasoning?: string;
41
+ /**
42
+ * Effort level for the AI job.
43
+ */
44
+ effort?: string;
41
45
  /**
42
46
  * Verbosity for the AI job.
43
47
  */
@@ -42,6 +42,10 @@ export interface IGenerativeAIInferenceWorkerParameters extends IGenerativeAIWor
42
42
  * Reasoning effort for the AI job.
43
43
  */
44
44
  reasoning?: string;
45
+ /**
46
+ * Effort level for the AI job.
47
+ */
48
+ effort?: string;
45
49
  /**
46
50
  * Verbosity for the AI job.
47
51
  */
@@ -201,6 +205,10 @@ export interface IGenerativeAIInferenceTool {
201
205
  * The reasoning effort for the tool.
202
206
  */
203
207
  reasoning?: string;
208
+ /**
209
+ * Effort level for the tool.
210
+ */
211
+ effort?: string;
204
212
  /**
205
213
  * The verbosity for the tool.
206
214
  */
@@ -36,6 +36,10 @@ export interface IGenerativeAIPromptOptions extends IGenerativeAIOptions {
36
36
  * Reasoning effort for the AI job.
37
37
  */
38
38
  reasoning?: string;
39
+ /**
40
+ * Effort level for the AI job.
41
+ */
42
+ effort?: string;
39
43
  /**
40
44
  * Verbosity for the AI job.
41
45
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewdle/web-sdk-types",
3
- "version": "1.0.58",
3
+ "version": "1.0.59",
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",