File size: 1,271 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 | /**
* Two-Stage Generation Pipeline
*
* Barrel re-export — all symbols previously exported from this file
* are now spread across focused sub-modules.
*/
// Types
export type {
AgentInfo,
SceneGenerationContext,
GeneratedSlideData,
GenerationResult,
GenerationCallbacks,
AICallFn,
} from './pipeline-types';
// Prompt formatters
export {
buildCourseContext,
formatAgentsForPrompt,
formatTeacherPersonaForPrompt,
formatImageDescription,
formatImagePlaceholder,
buildVisionUserContent,
buildLanguageText,
} from './prompt-formatters';
// JSON repair
export { parseJsonResponse, tryParseJson } from './json-repair';
// Outline generator (Stage 1)
export { generateSceneOutlinesFromRequirements, applyOutlineFallbacks } from './outline-generator';
// Scene generator (Stage 2)
export {
generateFullScenes,
generateSceneContent,
generateSceneActions,
createSceneWithActions,
} from './scene-generator';
export type { SceneContentOptions, SceneActionsOptions } from './scene-generator';
// Scene builder (standalone)
export {
buildSceneFromOutline,
buildCompleteScene,
uniquifyMediaElementIds,
} from './scene-builder';
// Pipeline runner
export { createGenerationSession, runGenerationPipeline } from './pipeline-runner';
|