@voltagent/core 2.6.4 → 2.6.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/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/docs/observability/mlflow.md +91 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -31391,7 +31391,10 @@ var Agent = class {
|
|
|
31391
31391
|
} finally {
|
|
31392
31392
|
reader.releaseLock();
|
|
31393
31393
|
await parentPromise;
|
|
31394
|
-
|
|
31394
|
+
try {
|
|
31395
|
+
await writer.close();
|
|
31396
|
+
} catch {
|
|
31397
|
+
}
|
|
31395
31398
|
}
|
|
31396
31399
|
}, "createMergedFullStream");
|
|
31397
31400
|
return createMergedFullStream();
|