@uptiqai/widgets-sdk 1.278.0 → 1.280.0

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/index.d.ts CHANGED
@@ -173,6 +173,8 @@ export declare type Conversation = {
173
173
  agentId: string;
174
174
  title?: string;
175
175
  conversation?: (UserMessage_2 | AiMessage)[];
176
+ conversationModelName?: string;
177
+ effort?: QueryRunOptions['effort'];
176
178
  isModelDeprecated?: boolean;
177
179
  createdAt: Date;
178
180
  updatedAt: Date;
@@ -396,6 +398,7 @@ export declare type QueryPayload = {
396
398
  executionId?: string;
397
399
  files?: File[];
398
400
  payload?: Record<string, unknown>;
401
+ options?: QueryRunOptions;
399
402
  documents?: {
400
403
  signedUrl: string;
401
404
  fileName?: string;
@@ -403,6 +406,12 @@ export declare type QueryPayload = {
403
406
  }[];
404
407
  };
405
408
 
409
+ /** What the run is pointed at, from the agent-executor's own execution-options catalog. */
410
+ export declare type QueryRunOptions = {
411
+ conversationModelName?: string;
412
+ effort?: 'minimal' | 'low' | 'medium' | 'high';
413
+ };
414
+
406
415
  export declare type QueueUpdateEvent = {
407
416
  executionId: string;
408
417
  };