llm-relay 0.79.0 → 0.80.0

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/cli.js CHANGED
@@ -18,6 +18,7 @@ import { buildDispatch, allLadderRungs, normalizeCliCommand, restoreExhaustedRow
18
18
  import { flushLaneAffinityPersistence, loadLaneAffinityRows, restoreLaneAffinityRows } from "./lane-affinity.js";
19
19
  import { flushDispatchLaneStatsPersistence, loadLaneStatsRows, restoreLaneStatsRows } from "./dispatch-lane-stats.js";
20
20
  import { McpDispatchServer } from "./mcp/server.js";
21
+ import { createJobJournal } from "./mcp/job-journal.js";
21
22
  import { flushDispatchExhaustionPersistence, loadExhaustedRows } from "./dispatch-exhaustion-persistence.js";
22
23
  import { detectHostRouting, parseHostRoutingState } from "./host-routing.js";
23
24
  import { contextWindowResolver, COST_CLASSES } from "./metadata.js";
@@ -1754,6 +1755,7 @@ export async function runMcp() {
1754
1755
  version: currentVersion(),
1755
1756
  reportExhaustion: (report) => reportMcpExhaustion(cfg, report),
1756
1757
  reportTelemetry: (report) => { void reportMcpTelemetry(cfg, report); },
1758
+ journal: createJobJournal(),
1757
1759
  write: (chunk) => process.stdout.write(chunk),
1758
1760
  });
1759
1761
  const stop = () => {