@agentskit/memory 0.10.0 → 0.10.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/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1727,7 +1727,7 @@ var createKvMemoryFromConfigAuto = async (config) => {
|
|
|
1727
1727
|
const sqlite = await tryDefaultSqliteOpener();
|
|
1728
1728
|
if (!sqlite) {
|
|
1729
1729
|
throw new MemoryError({
|
|
1730
|
-
code: "
|
|
1730
|
+
code: "AK_MEMORY_SQLITE_DRIVER_MISSING",
|
|
1731
1731
|
message: "createKvMemoryFromConfigAuto: sqlite backend needs `better-sqlite3` (pnpm add better-sqlite3)."
|
|
1732
1732
|
});
|
|
1733
1733
|
}
|
|
@@ -1737,7 +1737,7 @@ var createKvMemoryFromConfigAuto = async (config) => {
|
|
|
1737
1737
|
const redis = await tryDefaultRedisClient(config.url);
|
|
1738
1738
|
if (!redis) {
|
|
1739
1739
|
throw new MemoryError({
|
|
1740
|
-
code: "
|
|
1740
|
+
code: "AK_MEMORY_REDIS_DRIVER_MISSING",
|
|
1741
1741
|
message: "createKvMemoryFromConfigAuto: redis backend needs `redis` (pnpm add redis)."
|
|
1742
1742
|
});
|
|
1743
1743
|
}
|