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.
This commit is contained in:
Konstantin Fickel 2026-02-14 10:25:08 +01:00
parent c818e6452e
commit 6926d0492d
Signed by: kfickel
GPG key ID: A793722F9933C1A5

View file

@ -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):