File size: 5,530 Bytes
f56a29b | 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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | /**
* Scene Content Generation API
*
* Generates scene content (slides/quiz/interactive/pbl) from an outline.
* This is the first half of the two-step scene generation pipeline.
* Does NOT generate actions β use /api/generate/scene-actions for that.
*/
import { NextRequest } from 'next/server';
import { callLLM } from '@/lib/ai/llm';
import {
applyOutlineFallbacks,
generateSceneContent,
buildVisionUserContent,
} from '@/lib/generation/generation-pipeline';
import type { AgentInfo } from '@/lib/generation/generation-pipeline';
import type { SceneOutline, PdfImage, ImageMapping } from '@/lib/types/generation';
import { createLogger } from '@/lib/logger';
import { apiError, apiSuccess } from '@/lib/server/api-response';
import { resolveModelFromRequest } from '@/lib/server/resolve-model';
const log = createLogger('Scene Content API');
export const maxDuration = 300;
export async function POST(req: NextRequest) {
let outlineTitle: string | undefined;
let resolvedModelString: string | undefined;
try {
const body = await req.json();
const {
outline: rawOutline,
allOutlines,
pdfImages,
imageMapping,
stageInfo: _stageInfo,
stageId,
agents,
languageDirective,
} = body as {
outline: SceneOutline;
allOutlines: SceneOutline[];
pdfImages?: PdfImage[];
imageMapping?: ImageMapping;
stageInfo: {
name: string;
description?: string;
style?: string;
};
stageId: string;
agents?: AgentInfo[];
languageDirective?: string;
};
// Validate required fields
if (!rawOutline) {
return apiError('MISSING_REQUIRED_FIELD', 400, 'outline is required');
}
if (!allOutlines || allOutlines.length === 0) {
return apiError(
'MISSING_REQUIRED_FIELD',
400,
'allOutlines is required and must not be empty',
);
}
if (!stageId) {
return apiError('MISSING_REQUIRED_FIELD', 400, 'stageId is required');
}
const outline: SceneOutline = { ...rawOutline };
// ββ Model resolution from request headers/body ββ
const {
model: languageModel,
modelInfo,
modelString,
thinkingConfig,
} = await resolveModelFromRequest(req, body);
outlineTitle = rawOutline?.title;
resolvedModelString = modelString;
// Detect vision capability
const hasVision = !!modelInfo?.capabilities?.vision;
// Vision-aware AI call function
const aiCall = async (
systemPrompt: string,
userPrompt: string,
images?: Array<{ id: string; src: string }>,
): Promise<string> => {
if (images?.length && hasVision) {
const result = await callLLM(
{
model: languageModel,
system: systemPrompt,
messages: [
{
role: 'user' as const,
content: buildVisionUserContent(userPrompt, images),
},
],
maxOutputTokens: modelInfo?.outputWindow,
},
'scene-content',
undefined,
thinkingConfig,
);
return result.text;
}
const result = await callLLM(
{
model: languageModel,
system: systemPrompt,
prompt: userPrompt,
maxOutputTokens: modelInfo?.outputWindow,
},
'scene-content',
undefined,
thinkingConfig,
);
return result.text;
};
// ββ Apply fallbacks ββ
const effectiveOutline = applyOutlineFallbacks(outline, !!languageModel);
// ββ Filter images assigned to this outline ββ
let assignedImages: PdfImage[] | undefined;
if (
pdfImages &&
pdfImages.length > 0 &&
effectiveOutline.suggestedImageIds &&
effectiveOutline.suggestedImageIds.length > 0
) {
const suggestedIds = new Set(effectiveOutline.suggestedImageIds);
assignedImages = pdfImages.filter((img) => suggestedIds.has(img.id));
}
// ββ Media generation is handled client-side in parallel (media-orchestrator.ts) ββ
// The content generator receives placeholder IDs (gen_img_1, gen_vid_1) as-is.
// resolveImageIds() in generation-pipeline.ts will keep these placeholders in elements.
const generatedMediaMapping: ImageMapping = {};
// ββ Generate content ββ
log.info(
`Generating content: "${effectiveOutline.title}" (${effectiveOutline.type}) [model=${modelString}]`,
);
const content = await generateSceneContent(effectiveOutline, aiCall, {
assignedImages,
imageMapping,
languageModel: effectiveOutline.type === 'pbl' ? languageModel : undefined,
visionEnabled: hasVision,
generatedMediaMapping,
agents,
languageDirective,
thinkingConfig,
});
if (!content) {
log.error(`Failed to generate content for: "${effectiveOutline.title}"`);
return apiError(
'GENERATION_FAILED',
500,
`Failed to generate content: ${effectiveOutline.title}`,
);
}
log.info(`Content generated successfully: "${effectiveOutline.title}"`);
return apiSuccess({ content, effectiveOutline });
} catch (error) {
log.error(
`Scene content generation failed [scene="${outlineTitle ?? 'unknown'}", model=${resolvedModelString ?? 'unknown'}]:`,
error,
);
return apiError('INTERNAL_ERROR', 500, error instanceof Error ? error.message : String(error));
}
}
|