@credal/actions 0.1.80 → 0.1.81
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.
@@ -1725,12 +1725,11 @@ exports.snowflakeRunSnowflakeQueryDefinition = {
|
|
1725
1725
|
},
|
1726
1726
|
codeInterpreterLimit: {
|
1727
1727
|
type: "number",
|
1728
|
-
description: "A minimum number of rows required to pass to code interpreter (if enabled)",
|
1728
|
+
description: "A minimum number of rows required to pass to code interpreter for analysis and image generation (if enabled)",
|
1729
1729
|
},
|
1730
|
-
|
1731
|
-
|
1732
|
-
|
1733
|
-
description: "Whether we should try to generate an image with results via code interpreter, regardless of if the codeInterpreter limit is reached",
|
1730
|
+
codeInterpreterImageGenLimit: {
|
1731
|
+
type: "number",
|
1732
|
+
description: "A minimum number of rows required to pass to code interpreter for image generation only (if enabled)",
|
1734
1733
|
},
|
1735
1734
|
},
|
1736
1735
|
},
|
@@ -1661,7 +1661,7 @@ export declare const snowflakeRunSnowflakeQueryParamsSchema: z.ZodObject<{
|
|
1661
1661
|
outputFormat: z.ZodOptional<z.ZodEnum<["json", "csv"]>>;
|
1662
1662
|
limit: z.ZodOptional<z.ZodNumber>;
|
1663
1663
|
codeInterpreterLimit: z.ZodOptional<z.ZodNumber>;
|
1664
|
-
|
1664
|
+
codeInterpreterImageGenLimit: z.ZodOptional<z.ZodNumber>;
|
1665
1665
|
}, "strip", z.ZodTypeAny, {
|
1666
1666
|
query: string;
|
1667
1667
|
databaseName: string;
|
@@ -1670,7 +1670,7 @@ export declare const snowflakeRunSnowflakeQueryParamsSchema: z.ZodObject<{
|
|
1670
1670
|
limit?: number | undefined;
|
1671
1671
|
outputFormat?: "json" | "csv" | undefined;
|
1672
1672
|
codeInterpreterLimit?: number | undefined;
|
1673
|
-
|
1673
|
+
codeInterpreterImageGenLimit?: number | undefined;
|
1674
1674
|
}, {
|
1675
1675
|
query: string;
|
1676
1676
|
databaseName: string;
|
@@ -1679,7 +1679,7 @@ export declare const snowflakeRunSnowflakeQueryParamsSchema: z.ZodObject<{
|
|
1679
1679
|
limit?: number | undefined;
|
1680
1680
|
outputFormat?: "json" | "csv" | undefined;
|
1681
1681
|
codeInterpreterLimit?: number | undefined;
|
1682
|
-
|
1682
|
+
codeInterpreterImageGenLimit?: number | undefined;
|
1683
1683
|
}>;
|
1684
1684
|
export type snowflakeRunSnowflakeQueryParamsType = z.infer<typeof snowflakeRunSnowflakeQueryParamsSchema>;
|
1685
1685
|
export declare const snowflakeRunSnowflakeQueryOutputSchema: z.ZodObject<{
|
@@ -528,11 +528,11 @@ exports.snowflakeRunSnowflakeQueryParamsSchema = zod_1.z.object({
|
|
528
528
|
limit: zod_1.z.number().describe("A limit on the number of rows to return").optional(),
|
529
529
|
codeInterpreterLimit: zod_1.z
|
530
530
|
.number()
|
531
|
-
.describe("A minimum number of rows required to pass to code interpreter (if enabled)")
|
531
|
+
.describe("A minimum number of rows required to pass to code interpreter for analysis and image generation (if enabled)")
|
532
532
|
.optional(),
|
533
|
-
|
534
|
-
.
|
535
|
-
.describe("
|
533
|
+
codeInterpreterImageGenLimit: zod_1.z
|
534
|
+
.number()
|
535
|
+
.describe("A minimum number of rows required to pass to code interpreter for image generation only (if enabled)")
|
536
536
|
.optional(),
|
537
537
|
});
|
538
538
|
exports.snowflakeRunSnowflakeQueryOutputSchema = zod_1.z.object({
|