From 313aedb00a0c52533ff51a4783622e5a17a9d9b7 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Thu, 28 Aug 2025 15:41:40 +1000 Subject: [PATCH] fix(ui): graph builder check for veo --- .../features/nodes/util/graph/generation/buildVeo3VideoGraph.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invokeai/frontend/web/src/features/nodes/util/graph/generation/buildVeo3VideoGraph.ts b/invokeai/frontend/web/src/features/nodes/util/graph/generation/buildVeo3VideoGraph.ts index 3fce6a5462..c611db14ae 100644 --- a/invokeai/frontend/web/src/features/nodes/util/graph/generation/buildVeo3VideoGraph.ts +++ b/invokeai/frontend/web/src/features/nodes/util/graph/generation/buildVeo3VideoGraph.ts @@ -28,7 +28,7 @@ export const buildVeo3VideoGraph = (arg: GraphBuilderArg): GraphBuilderReturn => const model = selectVideoModelConfig(state); assert(model, 'No model selected'); - assert(model.base === 'runway', 'Selected model is not a Veo3 model'); + assert(model.base === 'veo3', 'Selected model is not a Veo3 model'); const params = selectParamsSlice(state); const videoParams = selectVideoSlice(state);