@langchain/classic 1.0.35 → 1.0.36

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @langchain/classic
2
2
 
3
+ ## 1.0.36
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`80b43ec`](https://github.com/langchain-ai/langchainjs/commit/80b43ecffe0701c3c375c407fb601cb452f708ef)]:
8
+ - @langchain/openai@1.5.1
9
+
3
10
  ## 1.0.35
4
11
 
5
12
  ### Patch Changes
@@ -50,12 +50,12 @@ declare class ChatAgentOutputParser extends AgentActionOutputParser {
50
50
  * @returns An object that satisfies the AgentFinish interface or an object with the tool, toolInput, and log.
51
51
  */
52
52
  parse(text: string): Promise<{
53
+ tool?: undefined;
54
+ toolInput?: undefined;
53
55
  returnValues: {
54
56
  output: string;
55
57
  };
56
58
  log: string;
57
- tool?: undefined;
58
- toolInput?: undefined;
59
59
  } | {
60
60
  returnValues?: undefined;
61
61
  tool: any;
@@ -24,10 +24,10 @@ declare class ZeroShotAgentOutputParser extends AgentActionOutputParser {
24
24
  tool?: undefined;
25
25
  toolInput?: undefined;
26
26
  } | {
27
+ returnValues?: undefined;
27
28
  tool: string;
28
29
  toolInput: string;
29
30
  log: string;
30
- returnValues?: undefined;
31
31
  }>;
32
32
  /**
33
33
  * Returns the format instructions for parsing the output of an agent
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/classic",
3
- "version": "1.0.35",
3
+ "version": "1.0.36",
4
4
  "description": "Old abstractions from LangChain.js",
5
5
  "author": "LangChain",
6
6
  "license": "MIT",
@@ -170,8 +170,8 @@
170
170
  "@langchain/aws": "1.4.0",
171
171
  "@langchain/cloudflare": "1.1.0",
172
172
  "@langchain/core": "^1.2.0",
173
- "@langchain/deepseek": "1.1.0",
174
- "@langchain/fireworks": "0.2.0",
173
+ "@langchain/deepseek": "1.1.1",
174
+ "@langchain/fireworks": "0.2.1",
175
175
  "@langchain/google-common": "2.2.0",
176
176
  "@langchain/google-genai": "2.2.0",
177
177
  "@langchain/google-vertexai": "2.2.0",
@@ -182,10 +182,10 @@
182
182
  "@langchain/ollama": "1.3.0",
183
183
  "@langchain/redis": "1.1.3",
184
184
  "@langchain/textsplitters": "1.0.1",
185
- "@langchain/xai": "1.4.0",
185
+ "@langchain/xai": "1.4.1",
186
186
  "@langchain/tsconfig": "0.0.1",
187
- "langchain": "1.4.6",
188
- "@langchain/together-ai": "0.2.0"
187
+ "langchain": "1.5.0",
188
+ "@langchain/together-ai": "0.2.1"
189
189
  },
190
190
  "peerDependencies": {
191
191
  "cheerio": "*",
@@ -211,7 +211,7 @@
211
211
  "openapi-types": "^12.1.3",
212
212
  "yaml": "^2.9.0",
213
213
  "zod": "^3.25.76 || ^4",
214
- "@langchain/openai": "1.5.0",
214
+ "@langchain/openai": "1.5.1",
215
215
  "@langchain/textsplitters": "1.0.1"
216
216
  },
217
217
  "optionalDependencies": {