From 6926d0492dd4832514372865887b9cb003b5ec02 Mon Sep 17 00:00:00 2001 From: Konstantin Fickel Date: Sat, 14 Feb 2026 10:25:08 +0100 Subject: [PATCH] fix: update default image model from flux-pro to flux-pro-1.1 The flux-pro endpoint returns 403 Forbidden as it has been deprecated by BlackForestLabs. flux-pro-1.1 is the current supported version. --- bulkgen/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bulkgen/config.py b/bulkgen/config.py index 238fa97..e16b2d3 100644 --- a/bulkgen/config.py +++ b/bulkgen/config.py @@ -25,7 +25,7 @@ class Defaults(BaseModel): """Default model names, applied when a target does not specify its own.""" text_model: str = "mistral-large-latest" - image_model: str = "flux-pro" + image_model: str = "flux-pro-1.1" class TargetConfig(BaseModel):