@mem-weave/server 0.3.4 → 0.3.5
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/commands/start.js +1 -1
- package/package.json +1 -1
package/dist/commands/start.js
CHANGED
|
@@ -12,7 +12,7 @@ export const startCommand = async (ctx) => {
|
|
|
12
12
|
// Lazy import to avoid pulling fastify in tests of the parser itself.
|
|
13
13
|
const { createHttpServer } = await import('../server/http.js');
|
|
14
14
|
const { startConsolidationScheduler } = await import('../server/scheduler.js');
|
|
15
|
-
const app = await createHttpServer({ dbPath });
|
|
15
|
+
const app = await createHttpServer({ dbPath, configPath: ctx.configPath });
|
|
16
16
|
if (config.consolidation.enabled) {
|
|
17
17
|
startConsolidationScheduler({
|
|
18
18
|
dbPath,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mem-weave/server",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "MemWeave local-first memory infrastructure for AI agents: structured memory, 4-layer retrieval (BM25 + vector + graph + causal), token-budgeted injection, server-side write deduplication, and background consolidation. Server process: Fastify REST API + CLI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cli-entry.js",
|