@stackfactor/agent-utils 1.0.16 → 1.0.17
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"langChain.d.ts","sourceRoot":"","sources":["../../src/langChain.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"langChain.d.ts","sourceRoot":"","sources":["../../src/langChain.ts"],"names":[],"mappings":";wBA2VQ,MAAM,aACD,MAAM,gBACH,MAAM,SACb,GAAG,EAAE,kBACI,GAAG,UACX,GAAG,KACV,GAAG;sBAyBG,GAAG,UACF,MAAM,UACN,GAAG,eACC,QAAQ,GAAG,IAAI,KAC1B,OAAO,CAAC,GAAG,CAAC;wCAmfF,MAAM,UACT,GAAG,UACH,GAAG,oBACO,GAAG,KACpB,GAAG;oCAxYO,MAAM,UACT,GAAG,UACH,GAAG,oBACO,GAAG,eACT,MAAM,eACN,MAAM,wBACG,OAAO,WACpB,GAAG,cACA,MAAM,UACV,GAAG,EAAE,KACX,OAAO,CAAC,GAAG,CAAC;sDA6rBF,MAAM,UACT,GAAG,UACH,MAAM,YACL,GAAG,KACX,OAAO,CAAC,GAAG,CAAC;0CA7vB8B,GAAG,KAAG,MAAM;;AAwzBzD,wBAOE"}
|
package/dist/cjs/langChain.js
CHANGED
|
@@ -31,7 +31,7 @@ Do NOT include raw newlines, tabs, or unescaped quotes inside JSON string values
|
|
|
31
31
|
* @returns A formatted string describing all validation failures
|
|
32
32
|
*/
|
|
33
33
|
const formatZodErrors = (zodError) => {
|
|
34
|
-
const errors = zodError.issues
|
|
34
|
+
const errors = zodError.issues && Array.isArray(zodError.issues)
|
|
35
35
|
? zodError.issues.map((err) => {
|
|
36
36
|
const path = err.path.length > 0 ? err.path.join(".") : "root";
|
|
37
37
|
// Provide more context based on error type
|
|
@@ -56,7 +56,7 @@ const formatZodErrors = (zodError) => {
|
|
|
56
56
|
return `Field "${path}": ${err.message}`;
|
|
57
57
|
}
|
|
58
58
|
})
|
|
59
|
-
: [];
|
|
59
|
+
: ["Schema validation error"];
|
|
60
60
|
return `Schema validation failed:\n - ${errors.join("\n - ")}`;
|
|
61
61
|
};
|
|
62
62
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"langChain.d.ts","sourceRoot":"","sources":["../../src/langChain.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"langChain.d.ts","sourceRoot":"","sources":["../../src/langChain.ts"],"names":[],"mappings":";wBA2VQ,MAAM,aACD,MAAM,gBACH,MAAM,SACb,GAAG,EAAE,kBACI,GAAG,UACX,GAAG,KACV,GAAG;sBAyBG,GAAG,UACF,MAAM,UACN,GAAG,eACC,QAAQ,GAAG,IAAI,KAC1B,OAAO,CAAC,GAAG,CAAC;wCAmfF,MAAM,UACT,GAAG,UACH,GAAG,oBACO,GAAG,KACpB,GAAG;oCAxYO,MAAM,UACT,GAAG,UACH,GAAG,oBACO,GAAG,eACT,MAAM,eACN,MAAM,wBACG,OAAO,WACpB,GAAG,cACA,MAAM,UACV,GAAG,EAAE,KACX,OAAO,CAAC,GAAG,CAAC;sDA6rBF,MAAM,UACT,GAAG,UACH,MAAM,YACL,GAAG,KACX,OAAO,CAAC,GAAG,CAAC;0CA7vB8B,GAAG,KAAG,MAAM;;AAwzBzD,wBAOE"}
|
package/dist/esm/langChain.js
CHANGED
|
@@ -26,7 +26,7 @@ Do NOT include raw newlines, tabs, or unescaped quotes inside JSON string values
|
|
|
26
26
|
* @returns A formatted string describing all validation failures
|
|
27
27
|
*/
|
|
28
28
|
const formatZodErrors = (zodError) => {
|
|
29
|
-
const errors = zodError.issues
|
|
29
|
+
const errors = zodError.issues && Array.isArray(zodError.issues)
|
|
30
30
|
? zodError.issues.map((err) => {
|
|
31
31
|
const path = err.path.length > 0 ? err.path.join(".") : "root";
|
|
32
32
|
// Provide more context based on error type
|
|
@@ -51,7 +51,7 @@ const formatZodErrors = (zodError) => {
|
|
|
51
51
|
return `Field "${path}": ${err.message}`;
|
|
52
52
|
}
|
|
53
53
|
})
|
|
54
|
-
: [];
|
|
54
|
+
: ["Schema validation error"];
|
|
55
55
|
return `Schema validation failed:\n - ${errors.join("\n - ")}`;
|
|
56
56
|
};
|
|
57
57
|
/**
|