@mastra/memory 1.15.1-alpha.1 → 1.15.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/CHANGELOG.md +10 -0
- package/dist/{chunk-OUMWCVQI.cjs → chunk-3TU4GGH3.cjs} +6 -2
- package/dist/chunk-3TU4GGH3.cjs.map +1 -0
- package/dist/{chunk-HAEQMUD4.js → chunk-7NCBGOHT.js} +6 -2
- package/dist/chunk-7NCBGOHT.js.map +1 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +39 -39
- package/dist/docs/references/docs-memory-message-history.md +6 -0
- package/dist/docs/references/docs-memory-observational-memory.md +6 -0
- package/dist/index.cjs +13 -13
- package/dist/index.js +4 -4
- package/dist/{observational-memory-H74M5SB6.js → observational-memory-4TDIBXK6.js} +3 -3
- package/dist/{observational-memory-H74M5SB6.js.map → observational-memory-4TDIBXK6.js.map} +1 -1
- package/dist/{observational-memory-TKXRH2LD.cjs → observational-memory-GH6IRH6E.cjs} +26 -26
- package/dist/{observational-memory-TKXRH2LD.cjs.map → observational-memory-GH6IRH6E.cjs.map} +1 -1
- package/dist/processors/index.cjs +24 -24
- package/dist/processors/index.js +1 -1
- package/package.json +8 -8
- package/dist/chunk-HAEQMUD4.js.map +0 -1
- package/dist/chunk-OUMWCVQI.cjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @mastra/memory
|
|
2
2
|
|
|
3
|
+
## 1.15.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fixed gateway model detection to use duck typing instead of instanceof check, preventing potential failures from cross-package module resolution issues. Propagates `gatewayId` through the AISDKV5LanguageModel wrapper so duck-type detection works even when models are re-wrapped. ([#15168](https://github.com/mastra-ai/mastra/pull/15168))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`87df955`](https://github.com/mastra-ai/mastra/commit/87df955c028660c075873fd5d74af28233ce32eb), [`8fad147`](https://github.com/mastra-ai/mastra/commit/8fad14759804179c8e080ce4d9dec6ef1a808b31), [`582644c`](https://github.com/mastra-ai/mastra/commit/582644c4a87f83b4f245a84d72b9e8590585012e), [`cbdf3e1`](https://github.com/mastra-ai/mastra/commit/cbdf3e12b3d0c30a6e5347be658e2009648c130a), [`8fe46d3`](https://github.com/mastra-ai/mastra/commit/8fe46d354027f3f0f0846e64219772348de106dd), [`18c67db`](https://github.com/mastra-ai/mastra/commit/18c67dbb9c9ebc26f26f65f7d3ff836e5691ef46), [`4ba3bb1`](https://github.com/mastra-ai/mastra/commit/4ba3bb1e465ad2ddaba3bbf2bc47e0faec32985e), [`5d84914`](https://github.com/mastra-ai/mastra/commit/5d84914e0e520c642a40329b210b413fcd139898), [`8dcc77e`](https://github.com/mastra-ai/mastra/commit/8dcc77e78a5340f5848f74b9e9f1b3da3513c1f5), [`aa67fc5`](https://github.com/mastra-ai/mastra/commit/aa67fc59ee8a5eeff1f23eb05970b8d7a536c8ff), [`fd2f314`](https://github.com/mastra-ai/mastra/commit/fd2f31473d3449b6b97e837ef8641264377f41a7), [`fa8140b`](https://github.com/mastra-ai/mastra/commit/fa8140bcd4251d2e3ac85fdc5547dfc4f372b5be), [`190f452`](https://github.com/mastra-ai/mastra/commit/190f45258b0640e2adfc8219fa3258cdc5b8f071), [`e80fead`](https://github.com/mastra-ai/mastra/commit/e80fead1412cc0d1b2f7d6a1ce5017d9e0098ff7), [`0287b64`](https://github.com/mastra-ai/mastra/commit/0287b644a5c3272755cf3112e71338106664103b), [`7e7bf60`](https://github.com/mastra-ai/mastra/commit/7e7bf606886bf374a6f9d4ca9b09dd83d0533372), [`184907d`](https://github.com/mastra-ai/mastra/commit/184907d775d8609c03c26e78ccaf37315f3aa287), [`075e91a`](https://github.com/mastra-ai/mastra/commit/075e91a4549baf46ad7a42a6a8ac8dfa78cc09e6), [`2a69802`](https://github.com/mastra-ai/mastra/commit/2a69802a0fc6d8a25a77fa6a42276e9d59a83914), [`0c4cd13`](https://github.com/mastra-ai/mastra/commit/0c4cd131931c04ac5405373c932a242dbe88edd6), [`b16a753`](https://github.com/mastra-ai/mastra/commit/b16a753d5748440248d7df82e29bb987a9c8386c)]:
|
|
10
|
+
- @mastra/core@1.25.0
|
|
11
|
+
- @mastra/schema-compat@1.2.8
|
|
12
|
+
|
|
3
13
|
## 1.15.1-alpha.1
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -941,6 +941,8 @@ var ObservationStrategy = class _ObservationStrategy {
|
|
|
941
941
|
this.scope = deps.scope;
|
|
942
942
|
this.retrieval = deps.retrieval;
|
|
943
943
|
}
|
|
944
|
+
deps;
|
|
945
|
+
opts;
|
|
944
946
|
storage;
|
|
945
947
|
messageHistory;
|
|
946
948
|
tokenCounter;
|
|
@@ -1947,6 +1949,8 @@ var ObservationStep = class {
|
|
|
1947
1949
|
this.turn = turn;
|
|
1948
1950
|
this.stepNumber = stepNumber;
|
|
1949
1951
|
}
|
|
1952
|
+
turn;
|
|
1953
|
+
stepNumber;
|
|
1950
1954
|
_prepared = false;
|
|
1951
1955
|
_context;
|
|
1952
1956
|
/** Whether this step has been prepared. */
|
|
@@ -8866,5 +8870,5 @@ exports.stripEphemeralAnchorIds = stripEphemeralAnchorIds;
|
|
|
8866
8870
|
exports.stripObservationGroups = stripObservationGroups;
|
|
8867
8871
|
exports.truncateStringByTokens = truncateStringByTokens;
|
|
8868
8872
|
exports.wrapInObservationGroup = wrapInObservationGroup;
|
|
8869
|
-
//# sourceMappingURL=chunk-
|
|
8870
|
-
//# sourceMappingURL=chunk-
|
|
8873
|
+
//# sourceMappingURL=chunk-3TU4GGH3.cjs.map
|
|
8874
|
+
//# sourceMappingURL=chunk-3TU4GGH3.cjs.map
|