open-agents-ai 0.187.194 → 0.187.195
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 +2 -2
- 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 sharedDb = initDb(dbPath);
|
|
313218
313219
|
memoryStoresCache = {
|
|
313219
313220
|
episode: new EpisodeStore(dbPath),
|
|
313220
313221
|
temporal: new TemporalGraph(dbPath),
|
|
313221
|
-
failure: new FailureStore(
|
|
313222
|
+
failure: new FailureStore(sharedDb)
|
|
313222
313223
|
};
|
|
313223
|
-
initDb(dbPath);
|
|
313224
313224
|
return memoryStoresCache;
|
|
313225
313225
|
} catch (err) {
|
|
313226
313226
|
try {
|
package/package.json
CHANGED