this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(health): add trailing slash to Letta health endpoint

alice 6316a847 08b694f5

+1 -1
+1 -1
src/health.ts
··· 58 58 59 59 // Letta: Check health endpoint (fast, doesn't query agents) 60 60 try { 61 - const res = await fetch(`${config.LETTA_BASE_URL}/v1/health`, { 61 + const res = await fetch(`${config.LETTA_BASE_URL}/v1/health/`, { 62 62 method: "GET", 63 63 signal: AbortSignal.timeout(5000), // 5s timeout 64 64 });