open-agents-ai 0.187.193 → 0.187.194
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 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -313215,12 +313215,12 @@ async function getMemoryStores() {
|
|
|
313215
313215
|
memoryInitTried = true;
|
|
313216
313216
|
try {
|
|
313217
313217
|
const dbPath = join90(homedir29(), ".open-agents", "memory.db");
|
|
313218
|
-
const db = initDb(dbPath);
|
|
313219
313218
|
memoryStoresCache = {
|
|
313220
|
-
episode: new EpisodeStore(
|
|
313221
|
-
temporal: new TemporalGraph(
|
|
313222
|
-
failure: new FailureStore(
|
|
313219
|
+
episode: new EpisodeStore(dbPath),
|
|
313220
|
+
temporal: new TemporalGraph(dbPath),
|
|
313221
|
+
failure: new FailureStore(dbPath)
|
|
313223
313222
|
};
|
|
313223
|
+
initDb(dbPath);
|
|
313224
313224
|
return memoryStoresCache;
|
|
313225
313225
|
} catch (err) {
|
|
313226
313226
|
try {
|
package/package.json
CHANGED