From 47b53db76096c27c6ec947c9ffd45c9134fbc3f6 Mon Sep 17 00:00:00 2001 From: Konstantin Fickel Date: Sat, 14 Feb 2026 21:27:16 +0100 Subject: [PATCH] chore: update default models to pixtral-large-latest and flux-2-pro --- bulkgen/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bulkgen/config.py b/bulkgen/config.py index 0af35c5..136e43a 100644 --- a/bulkgen/config.py +++ b/bulkgen/config.py @@ -24,8 +24,8 @@ TEXT_EXTENSIONS: frozenset[str] = frozenset({".md", ".txt"}) 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-1.1" + text_model: str = "pixtral-large-latest" + image_model: str = "flux-2-pro" class TargetConfig(BaseModel):