f6226facbd
Harden the BYO-mode signal at the API boundary (start/scene/insert-beat): only clientTts === true drops server TTS, so a stray truthy non-boolean can't silently disable it. Add a non-blocking prefix hint in TtsKeyModal that warns when the pasted key prefix (tp-/sk-) mismatches the selected key type — a mismatch hits the wrong endpoint and plays silently, the symptom BYO fixes. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
import { requestScene } from "@infiplot/engine";
|
||
import type { SceneRequest } from "@infiplot/types";
|
||
import { NextResponse } from "next/server";
|
||
import { loadEngineConfig } from "@/lib/config";
|
||
|
||
export const runtime = "nodejs";
|
||
// Capped at 60 for Vercel Hobby (300 allowed on Pro). The scene pipeline is
|
||
// Writer + CharDesigner×N + Cinematographer + Painter — happy path 9–12s; the
|
||
// tail (cold provider, multiple new characters) can push 30–45s, so 60 is a
|
||
// reasonable headroom on Hobby.
|
||
export const maxDuration = 60;
|
||
|
||
export async function POST(req: Request) {
|
||
let body: SceneRequest;
|
||
try {
|
||
body = (await req.json()) as SceneRequest;
|
||
} catch {
|
||
return NextResponse.json({ error: "Invalid JSON" }, { status: 400 });
|
||
}
|
||
|
||
if (!body.session) {
|
||
return NextResponse.json({ error: "session is required" }, { status: 400 });
|
||
}
|
||
|
||
try {
|
||
const base = loadEngineConfig(req.headers);
|
||
// See StartRequest.clientTts — BYO clients synth in-browser, so drop server TTS.
|
||
const config = body.clientTts === true ? { ...base, tts: undefined } : base;
|
||
const result = await requestScene(config, body);
|
||
return NextResponse.json(result);
|
||
} catch (err) {
|
||
const message = err instanceof Error ? err.message : "Unknown error";
|
||
return NextResponse.json({ error: message }, { status: 500 });
|
||
}
|
||
}
|