langchain 0.3.3 → 0.3.5

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,4 +1,4 @@
1
- export { Agent, type AgentArgs, BaseSingleActionAgent, BaseMultiActionAgent, RunnableAgent, LLMSingleActionAgent, type LLMSingleActionAgentInput, type OutputParserArgs, } from "./agent.js";
1
+ export { Agent, type AgentArgs, BaseSingleActionAgent, BaseMultiActionAgent, RunnableAgent, LLMSingleActionAgent, type LLMSingleActionAgentInput, type OutputParserArgs, type AgentRunnableSequence, } from "./agent.js";
2
2
  export { JsonToolkit, OpenApiToolkit, RequestsToolkit, type VectorStoreInfo, VectorStoreRouterToolkit, VectorStoreToolkit, createJsonAgent, createOpenApiAgent, createVectorStoreAgent, createVectorStoreRouterAgent, } from "./toolkits/index.js";
3
3
  export { Toolkit } from "./toolkits/base.js";
4
4
  export { ChatAgent, type ChatAgentInput, type ChatCreatePromptArgs, } from "./chat/index.js";
@@ -289,6 +289,7 @@ class _ConfigurableModel extends chat_models_1.BaseChatModel {
289
289
  ? [...this._configurableFields]
290
290
  : this._configurableFields,
291
291
  configPrefix: this._configPrefix,
292
+ queuedMethodOperations: this._queuedMethodOperations,
292
293
  });
293
294
  return new runnables_1.RunnableBinding({
294
295
  config: mergedConfig,
@@ -285,6 +285,7 @@ class _ConfigurableModel extends BaseChatModel {
285
285
  ? [...this._configurableFields]
286
286
  : this._configurableFields,
287
287
  configPrefix: this._configPrefix,
288
+ queuedMethodOperations: this._queuedMethodOperations,
288
289
  });
289
290
  return new RunnableBinding({
290
291
  config: mergedConfig,