claude-memory-layer 1.0.39 → 1.0.40
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/server/index.js
CHANGED
|
@@ -10366,7 +10366,7 @@ function streamClaudeResponse(prompt, stream) {
|
|
|
10366
10366
|
import { Hono as Hono9 } from "hono";
|
|
10367
10367
|
var healthRouter = new Hono9();
|
|
10368
10368
|
healthRouter.get("/", async (c) => {
|
|
10369
|
-
const memoryService =
|
|
10369
|
+
const memoryService = getLightweightServiceFromQuery(c);
|
|
10370
10370
|
try {
|
|
10371
10371
|
await memoryService.initialize();
|
|
10372
10372
|
const [stats, outbox] = await Promise.all([
|