@crewdle/web-sdk-types 1.0.52 → 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.
@@ -40,9 +40,13 @@ export interface IGenerativeAIInferenceCreateJobParameters extends IGenerativeAI
40
40
  */
41
41
  grammar?: any;
42
42
  /**
43
- * Enable reasoning for the AI job.
43
+ * Reasoning effort for the AI job.
44
44
  */
45
- reasoning?: boolean;
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
  */
@@ -63,6 +67,30 @@ export interface IGenerativeAIInferenceCreateJobParameters extends IGenerativeAI
63
67
  * The max tokens for the inference.
64
68
  */
65
69
  maxTokens?: number;
70
+ /**
71
+ * The voice for the inference.
72
+ */
73
+ voice?: string;
74
+ /**
75
+ * The language for the inference.
76
+ */
77
+ language?: string;
78
+ /**
79
+ * The response format for the inference.
80
+ */
81
+ responseFormat?: string;
82
+ /**
83
+ * The timestamp granularities for the inference.
84
+ */
85
+ timestampGranularities?: string;
86
+ /**
87
+ * The duration for the inference.
88
+ */
89
+ duration?: string;
90
+ /**
91
+ * The ratio for the inference.
92
+ */
93
+ ratio?: string;
66
94
  /**
67
95
  * tools for the AI job.
68
96
  */
@@ -35,9 +35,13 @@ export interface IGenerativeAIInferenceJob extends IGenerativeAIJob {
35
35
  */
36
36
  grammar?: any;
37
37
  /**
38
- * Enable reasoning for the AI job.
38
+ * Reasoning effort for the AI job.
39
39
  */
40
- reasoning?: boolean;
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
  */
@@ -58,6 +62,30 @@ export interface IGenerativeAIInferenceJob extends IGenerativeAIJob {
58
62
  * The max tokens for the inference.
59
63
  */
60
64
  maxTokens?: number;
65
+ /**
66
+ * The voice for the inference.
67
+ */
68
+ voice?: string;
69
+ /**
70
+ * The language for the inference.
71
+ */
72
+ language?: string;
73
+ /**
74
+ * The response format for the inference.
75
+ */
76
+ responseFormat?: string;
77
+ /**
78
+ * The timestamp granularities for the inference.
79
+ */
80
+ timestampGranularities?: string;
81
+ /**
82
+ * The duration for the inference.
83
+ */
84
+ duration?: string;
85
+ /**
86
+ * The ratio for the inference.
87
+ */
88
+ ratio?: string;
61
89
  /**
62
90
  * tools for the AI job.
63
91
  */
@@ -39,9 +39,13 @@ export interface IGenerativeAIInferenceWorkerParameters extends IGenerativeAIWor
39
39
  */
40
40
  grammar?: any;
41
41
  /**
42
- * Enable reasoning for the AI job.
42
+ * Reasoning effort for the AI job.
43
43
  */
44
- reasoning?: boolean;
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
  */
@@ -62,6 +66,30 @@ export interface IGenerativeAIInferenceWorkerParameters extends IGenerativeAIWor
62
66
  * The max tokens for the inference.
63
67
  */
64
68
  maxTokens?: number;
69
+ /**
70
+ * The voice for the inference.
71
+ */
72
+ voice?: string;
73
+ /**
74
+ * The language for the inference.
75
+ */
76
+ language?: string;
77
+ /**
78
+ * The response format for the inference.
79
+ */
80
+ responseFormat?: string;
81
+ /**
82
+ * The timestamp granularities for the inference.
83
+ */
84
+ timestampGranularities?: string;
85
+ /**
86
+ * The duration for the inference.
87
+ */
88
+ duration?: string;
89
+ /**
90
+ * The ratio for the inference.
91
+ */
92
+ ratio?: string;
65
93
  /**
66
94
  * tools for the AI job.
67
95
  */
@@ -33,9 +33,13 @@ export interface IGenerativeAIPromptOptions extends IGenerativeAIOptions {
33
33
  */
34
34
  grammar?: any;
35
35
  /**
36
- * Enable reasoning for the AI job.
36
+ * Reasoning effort for the AI job.
37
37
  */
38
- reasoning?: boolean;
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
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crewdle/web-sdk-types",
3
- "version": "1.0.52",
3
+ "version": "1.0.54",
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",