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/api/index.js
CHANGED
|
@@ -10354,7 +10354,7 @@ function streamClaudeResponse(prompt, stream) {
|
|
|
10354
10354
|
import { Hono as Hono9 } from "hono";
|
|
10355
10355
|
var healthRouter = new Hono9();
|
|
10356
10356
|
healthRouter.get("/", async (c) => {
|
|
10357
|
-
const memoryService =
|
|
10357
|
+
const memoryService = getLightweightServiceFromQuery(c);
|
|
10358
10358
|
try {
|
|
10359
10359
|
await memoryService.initialize();
|
|
10360
10360
|
const [stats, outbox] = await Promise.all([
|