@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.cjs
CHANGED
|
@@ -1771,7 +1771,7 @@ var createKvMemoryFromConfigAuto = async (config) => {
|
|
|
1771
1771
|
const sqlite = await tryDefaultSqliteOpener();
|
|
1772
1772
|
if (!sqlite) {
|
|
1773
1773
|
throw new core.MemoryError({
|
|
1774
|
-
code: "
|
|
1774
|
+
code: "AK_MEMORY_SQLITE_DRIVER_MISSING",
|
|
1775
1775
|
message: "createKvMemoryFromConfigAuto: sqlite backend needs `better-sqlite3` (pnpm add better-sqlite3)."
|
|
1776
1776
|
});
|
|
1777
1777
|
}
|
|
@@ -1781,7 +1781,7 @@ var createKvMemoryFromConfigAuto = async (config) => {
|
|
|
1781
1781
|
const redis = await tryDefaultRedisClient(config.url);
|
|
1782
1782
|
if (!redis) {
|
|
1783
1783
|
throw new core.MemoryError({
|
|
1784
|
-
code: "
|
|
1784
|
+
code: "AK_MEMORY_REDIS_DRIVER_MISSING",
|
|
1785
1785
|
message: "createKvMemoryFromConfigAuto: redis backend needs `redis` (pnpm add redis)."
|
|
1786
1786
|
});
|
|
1787
1787
|
}
|