Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | /** * API route for evolving an ongoing call scenario. * * POST /api/realtime/evolve * Body: { number, scenario, recentTranscripts, conferenceNumbers } * Returns: { evolution: ScenarioEvolution | null } */ import { NextResponse } from 'next/server' import { withAuth } from '@/lib/auth/withAuth' import { evolveScenario } from '@/components/toys/number-line/talkToNumber/generateScenario' import type { GeneratedScenario, TranscriptEntry, } from '@/components/toys/number-line/talkToNumber/generateScenario' export const POST = withAuth(async (request, { userId }) => { try { const body = await request.json() const { number, scenario, recentTranscripts, conferenceNumbers } = body as { number: number scenario: GeneratedScenario recentTranscripts: TranscriptEntry[] conferenceNumbers: number[] } if (typeof number !== 'number' || !isFinite(number)) { return NextResponse.json({ error: 'number must be a finite number' }, { status: 400 }) } if (!scenario?.situation) { return NextResponse.json({ error: 'scenario is required' }, { status: 400 }) } const apiKey = process.env.LLM_OPENAI_API_KEY || process.env.OPENAI_API_KEY if (!apiKey) { return NextResponse.json({ error: 'OpenAI API key not configured' }, { status: 503 }) } const evolution = await evolveScenario( apiKey, number, scenario, recentTranscripts ?? [], conferenceNumbers ?? [number], userId ) return NextResponse.json({ evolution }) } catch (error) { console.error('[realtime/evolve] Error:', error) return NextResponse.json({ error: 'Internal server error' }, { status: 500 }) } }) |