From 7a2a66d4b8a4e24831699f79d7c85c114cd749ce Mon Sep 17 00:00:00 2001 From: bigcat88 Date: Tue, 25 Nov 2025 18:02:08 +0200 Subject: [PATCH] set safety_tolerance to 5 --- comfy_api_nodes/apis/bfl_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_api_nodes/apis/bfl_api.py b/comfy_api_nodes/apis/bfl_api.py index 3a9096e64..d8d3557b3 100644 --- a/comfy_api_nodes/apis/bfl_api.py +++ b/comfy_api_nodes/apis/bfl_api.py @@ -86,7 +86,7 @@ class Flux2ProGenerateRequest(BaseModel): input_image_8: str | None = Field(None, description="Base64 encoded image for image-to-image generation") input_image_9: str | None = Field(None, description="Base64 encoded image for image-to-image generation") safety_tolerance: int | None = Field( - 6, description="Tolerance level for input and output moderation. Value 0 being most strict.", ge=0, le=6 + 5, description="Tolerance level for input and output moderation. Value 0 being most strict.", ge=0, le=5 ) output_format: str | None = Field( "png", description="Output format for the generated image. Can be 'jpeg' or 'png'."