open-agents-ai 0.187.193 → 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.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -313215,11 +313215,11 @@ 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);
313218
+ const sharedDb = initDb(dbPath);
313219
313219
  memoryStoresCache = {
313220
- episode: new EpisodeStore(db),
313221
- temporal: new TemporalGraph(db),
313222
- failure: new FailureStore(db)
313220
+ episode: new EpisodeStore(dbPath),
313221
+ temporal: new TemporalGraph(dbPath),
313222
+ failure: new FailureStore(sharedDb)
313223
313223
  };
313224
313224
  return memoryStoresCache;
313225
313225
  } catch (err) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.193",
3
+ "version": "0.187.195",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",