@crewdle/web-sdk-types 1.0.31 → 1.0.33
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.
|
@@ -32,6 +32,10 @@ export interface IGenerativeAIPromptOptions extends IGenerativeAIOptions {
|
|
|
32
32
|
* The grammar to use for the AI job.
|
|
33
33
|
*/
|
|
34
34
|
grammar?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Enable reasoning for the AI job.
|
|
37
|
+
*/
|
|
38
|
+
reasoning?: boolean;
|
|
35
39
|
/**
|
|
36
40
|
* The context for the AI job.
|
|
37
41
|
*/
|
|
@@ -26,6 +26,10 @@ export interface IGenerativeAIPromptResult extends IJobResultGenerativeAI {
|
|
|
26
26
|
internalContext?: {
|
|
27
27
|
[key: string]: string;
|
|
28
28
|
};
|
|
29
|
+
/**
|
|
30
|
+
* The file generated by the AI job.
|
|
31
|
+
*/
|
|
32
|
+
resultFile?: string;
|
|
29
33
|
/**
|
|
30
34
|
* The tokens used by the AI job.
|
|
31
35
|
*/
|