Add pxpipe as an experimental fifth Token Saver: Claude-format request bodies above a configurable size threshold are rendered as dense PNGs via the pxpipe-proxy library API (transformAnthropicMessages) before dispatch, cutting estimated input tokens by ~35-60% on token-dense contexts. Integration follows the Headroom pattern: applied to the final body in chatCore just before dispatch, fail-open on any error/timeout. Managed npm install into DATA_DIR/pxpipe, dynamic loader with per-version cache-bust, JSONL event log with rotation, /api/pxpipe/* endpoints, Token Saver card (marked experimental) + /dashboard/pxpipe page, and per-request Activated/Skipped annotation in Request Details. Disabled by default.
22 lines
637 B
JavaScript
22 lines
637 B
JavaScript
import { NextResponse } from "next/server";
|
|
import { getSettings } from "@/lib/localDb";
|
|
import { getPxpipeStatus } from "@/lib/pxpipe/service.js";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export async function GET() {
|
|
try {
|
|
const settings = await getSettings();
|
|
const status = getPxpipeStatus();
|
|
return NextResponse.json({
|
|
...status,
|
|
enabled: !!settings.pxpipeEnabled,
|
|
autoInstall: !!settings.pxpipeAutoInstall,
|
|
minChars: settings.pxpipeMinChars,
|
|
timeoutMs: settings.pxpipeTimeoutMs,
|
|
});
|
|
} catch (error) {
|
|
return NextResponse.json({ error: error.message }, { status: 500 });
|
|
}
|
|
}
|