langchain 0.3.4 → 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.
- package/dist/chat_models/universal.cjs +1 -0
- package/dist/chat_models/universal.js +1 -0
- package/dist/experimental/chrome_ai/app/dist/bundle.cjs +1250 -0
- package/dist/experimental/chrome_ai/app/dist/bundle.d.ts +1 -0
- package/dist/experimental/chrome_ai/app/dist/bundle.js +1249 -0
- package/package.json +1 -1
|
@@ -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,
|