add Veo3 model support to backend

This commit is contained in:
Mary Hipp
2025-08-20 11:05:29 -04:00
committed by psychedelicious
parent 5c9c8f0110
commit 7ea5bd5344
2 changed files with 2 additions and 0 deletions

View File

@@ -66,6 +66,7 @@ class UIType(str, Enum, metaclass=MetaEnum):
ChatGPT4oModel = "ChatGPT4oModelField"
Gemini2_5Model = "Gemini2_5ModelField"
FluxKontextModel = "FluxKontextModelField"
Veo3Model = "Veo3ModelField"
# endregion
# region Misc Field Types

View File

@@ -31,6 +31,7 @@ class BaseModelType(str, Enum):
Gemini2_5 = "gemini-2.5"
ChatGPT4o = "chatgpt-4o"
FluxKontext = "flux-kontext"
Veo3 = "veo3"
class ModelType(str, Enum):