fix(bfl): add mask to supported params for inpainting

mask was missing from get_supported_openai_params, causing it to be
dropped before reaching transform_image_edit_request where it is
already handled correctly for flux-pro-1.0-fill inpainting.
This commit is contained in:
Chesars 2026-03-04 23:17:15 -03:00
parent fc54a65c2b
commit fac6c068a0

View file

@ -55,6 +55,7 @@ class BlackForestLabsImageEditConfig(BaseImageEditConfig):
Note: BFL uses different parameter names, these are mapped in map_openai_params.
"""
return [
"mask",
"seed",
"output_format",
"safety_tolerance",