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.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  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 db = initDb(dbPath);
313219
313218
  memoryStoresCache = {
313220
- episode: new EpisodeStore(db),
313221
- temporal: new TemporalGraph(db),
313222
- failure: new FailureStore(db)
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.193",
3
+ "version": "0.187.194",
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",