Files
infiplot-web/app/api/start/route.ts
T
Zonghao Yuan 0e4c2ebef4 feat(engine): merge cloudflare-migration — paradigm D engine, BYOK proxy, story persistence (#95)
Squash-merge the cloudflare-migration branch (7 commits by Kai ki) into
staging with conflict resolution, feature integration, and bug fixes.

Engine:
- Paradigm D: single-stream Writer replacing dual-phase Plan/Beats
- Delete Architect agent; story bible generated via Writer <plan> tag
- Modular prompt architecture (segments/registry/builder)
- StreamRouter for tagged stream splitting (<plan>/<story>/<choices>)

Infrastructure:
- Cloudflare Workers deployment (wrangler.jsonc, OpenNext adapter)
- D1 database schema + Drizzle ORM (scaffolded, not yet active)
- R2 storage helpers (scaffolded, not yet active)
- Story persistence API routes + client-side persistence

BYOK (Bring Your Own Key):
- /api/llm/user-proxy with SSRF-protected LLM proxy (+ requireUser auth)
- CORS-aware fetch in ai-client: auto-detect CORS failure, fallback to
  server proxy transparently via OpenAI SDK custom fetch
- BYO config support added to classify-freeform and vision routes
- SettingsModal CORS privacy notice (keys never logged/stored)

SSE streaming:
- engineClient.ts: fetchSSE helper for progressive scene events
- startSession/requestScene accept optional emit callback
- Fix SSE error event field name (error → message) in scene/start routes

i18n integration:
- Wire buildLanguageDirective into paradigm D's prompt builder
- Update corsNotice i18n keys (zh-CN/en/ja) with CORS proxy privacy text
- Preserve Session.language + LanguageSwitcher from i18n commit

Co-authored-by: Kai ki <155355644+zbf1009@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-06-18 18:05:38 +08:00

96 lines
3.1 KiB
TypeScript

import { startSession } from "@infiplot/engine";
import type { SceneStreamEvent, StartRequest } from "@infiplot/types";
import { NextResponse } from "next/server";
import { loadEngineConfig } from "@/lib/config";
import { requireUser } from "@/lib/supabase/guard";
function formatSSE(event: SceneStreamEvent | { type: string; [k: string]: unknown }): string {
return `event: ${event.type}\ndata: ${JSON.stringify(event)}\n\n`;
}
export const runtime = "nodejs";
// Matches /api/vision and /api/parse-style-image — the user's resized 512px
// webp is ~30-80 KB; this caps pathological direct-API payloads (which would
// then ride along in every subsequent /api/scene request body via session).
const MAX_STYLE_REF_BYTES = 3 * 1024 * 1024;
export async function POST(req: Request) {
const auth = await requireUser();
if (auth instanceof NextResponse) return auth;
let body: StartRequest;
try {
body = (await req.json()) as StartRequest;
} catch {
return NextResponse.json({ error: "Invalid JSON" }, { status: 400 });
}
if (!body.worldSetting?.trim() || !body.styleGuide?.trim()) {
return NextResponse.json(
{ error: "worldSetting and styleGuide are required" },
{ status: 400 },
);
}
if (typeof body.styleReferenceImage === "string") {
if (!body.styleReferenceImage.startsWith("data:image/")) {
return NextResponse.json(
{ error: "styleReferenceImage must be a data:image/... base64 URL" },
{ status: 400 },
);
}
if (body.styleReferenceImage.length > MAX_STYLE_REF_BYTES) {
return NextResponse.json(
{ error: `styleReferenceImage exceeds ${MAX_STYLE_REF_BYTES} bytes` },
{ status: 413 },
);
}
}
const acceptsSSE = req.headers.get("accept")?.includes("text/event-stream");
try {
const base = loadEngineConfig();
const config = body.clientTts === true ? { ...base, tts: undefined } : base;
if (!acceptsSSE) {
const result = await startSession(config, body);
return NextResponse.json(result);
}
const encoder = new TextEncoder();
const stream = new ReadableStream({
async start(controller) {
try {
const result = await startSession(config, body, (event) => {
controller.enqueue(encoder.encode(formatSSE(event)));
});
controller.enqueue(
encoder.encode(
formatSSE({ type: "done", response: result }),
),
);
controller.close();
} catch (err) {
const message = err instanceof Error ? err.message : "Unknown error";
controller.enqueue(
encoder.encode(formatSSE({ type: "error", message })),
);
controller.close();
}
},
});
return new Response(stream, {
headers: {
"Content-Type": "text/event-stream",
"Cache-Control": "no-cache, no-transform",
Connection: "keep-alive",
},
});
} catch (err) {
const message = err instanceof Error ? err.message : "Unknown error";
return NextResponse.json({ error: message }, { status: 500 });
}
}