@langchain/core 0.3.18 → 0.3.19-rc.1
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/tools/index.d.ts +1 -1
- package/package.json +1 -1
- package/dist/types/zod.cjs +0 -2
- package/dist/types/zod.d.ts +0 -2
- package/dist/types/zod.js +0 -1
package/dist/tools/index.d.ts
CHANGED
|
@@ -4,13 +4,13 @@ import { BaseLangChain, type BaseLangChainParams } from "../language_models/base
|
|
|
4
4
|
import { type RunnableConfig } from "../runnables/config.js";
|
|
5
5
|
import type { RunnableFunc, RunnableInterface } from "../runnables/base.js";
|
|
6
6
|
import { ToolCall } from "../messages/tool.js";
|
|
7
|
-
import { ZodObjectAny } from "../types/zod.js";
|
|
8
7
|
import { MessageContent } from "../messages/base.js";
|
|
9
8
|
import { ToolInputParsingException } from "./utils.js";
|
|
10
9
|
export { ToolInputParsingException };
|
|
11
10
|
export type ResponseFormat = "content" | "content_and_artifact" | string;
|
|
12
11
|
type ToolReturnType = any;
|
|
13
12
|
export type ContentAndArtifact = [MessageContent, any];
|
|
13
|
+
type ZodObjectAny = z.ZodObject<any, any, any, any>;
|
|
14
14
|
/**
|
|
15
15
|
* Parameters for the Tool classes.
|
|
16
16
|
*/
|
package/package.json
CHANGED
package/dist/types/zod.cjs
DELETED
package/dist/types/zod.d.ts
DELETED
package/dist/types/zod.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|