@squidcloud/client 1.0.375 → 1.0.377
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.
|
@@ -8,4 +8,4 @@ export declare function decodeValueForMapping(encodedString: string): any;
|
|
|
8
8
|
* This function should not be used with objects with circular references.
|
|
9
9
|
* Returns true if the object are equal.
|
|
10
10
|
*/
|
|
11
|
-
export declare function compareByNormalizedJsonValue<T>(
|
|
11
|
+
export declare function compareByNormalizedJsonValue<T>(v1: T, v2: T): boolean;
|
|
@@ -30,6 +30,8 @@ export interface ExecuteAiQueryOptions {
|
|
|
30
30
|
overrideModel?: AiChatModelName;
|
|
31
31
|
/** Whether to generate a step-by-step walkthrough for the response. */
|
|
32
32
|
generateWalkthrough?: boolean;
|
|
33
|
+
/** The number of allowed retries in case of errors during query execution. Defaults to 2. */
|
|
34
|
+
maxErrorCorrections?: number;
|
|
33
35
|
}
|
|
34
36
|
/**
|
|
35
37
|
* Response from an AI query execution.
|