@crewdle/web-sdk-types 1.0.38 → 1.0.39
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.
|
@@ -174,6 +174,10 @@ export declare enum GenerativeAIInferenceToolType {
|
|
|
174
174
|
* @category AI
|
|
175
175
|
*/
|
|
176
176
|
export interface IGenerativeAIInferenceQuestion {
|
|
177
|
+
/**
|
|
178
|
+
* The id of the question.
|
|
179
|
+
*/
|
|
180
|
+
id: string;
|
|
177
181
|
/**
|
|
178
182
|
* The question.
|
|
179
183
|
*/
|
|
@@ -186,6 +190,10 @@ export interface IGenerativeAIInferenceQuestion {
|
|
|
186
190
|
* Whether the question is required.
|
|
187
191
|
*/
|
|
188
192
|
required: boolean;
|
|
193
|
+
/**
|
|
194
|
+
* The format of the question.
|
|
195
|
+
*/
|
|
196
|
+
format: string;
|
|
189
197
|
}
|
|
190
198
|
/**
|
|
191
199
|
* The interface for the generative AI inference tool parameter.
|