import { requestInsertBeat } from "@infiplot/engine"; import type { InsertBeatRequest } from "@infiplot/types"; import { NextResponse } from "next/server"; import { loadEngineConfig } from "@/lib/config"; import { requireUser } from "@/lib/supabase/guard"; export const runtime = "nodejs"; export async function POST(req: Request) { const auth = await requireUser(); if (auth instanceof NextResponse) return auth; let body: InsertBeatRequest; try { body = (await req.json()) as InsertBeatRequest; } catch { return NextResponse.json({ error: "Invalid JSON" }, { status: 400 }); } if (!body.session || !body.freeformAction) { return NextResponse.json( { error: "session and freeformAction are required" }, { status: 400 }, ); } try { const base = loadEngineConfig(); const config = body.clientTts === true ? { ...base, tts: undefined } : base; const result = await requestInsertBeat(config, body); return NextResponse.json({ ...result, characters: result.characters.map((c) => ({ ...c, voice: undefined })), }); } catch (err) { const message = err instanceof Error ? err.message : "Unknown error"; return NextResponse.json({ error: message }, { status: 500 }); } }