FLUX.2 [klein] Base 9B Edit with LoRA support is a high-quality image editing model with 9B parameters, offering precise modifications using natural language instructions and personalized styles via custom LoRA adapters. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.
Idle

$0.026per run·~38 / $1

Change the atmosphere into the moment before a storm. Preserve the same man, face, pose, outfit, beach layout, camera angle, and composition. Add dark dramatic clouds, stronger wind, rougher ocean waves, and cooler cinematic lighting. Keep the subject realistic and stable.
WaveSpeed AI FLUX.2 Klein Base 9B Edit LoRA is a high-quality image editing model with full LoRA support. Built on a 9B-parameter architecture, it delivers stronger detail, better prompt understanding, and more refined edits than the 4B variant. Upload one or more source images, describe the edit in natural language, and optionally apply custom LoRA adapters for personalized styles or character consistency.
Higher-quality editing The 9B model produces richer detail, stronger prompt adherence, and better overall edit quality than the 4B variant.
Natural-language editing Describe the change you want in plain language — transform style, modify content, add effects, or refine the scene.
Full LoRA support Apply custom LoRA adapters for personalized styles, characters, aesthetics, or branded visual directions.
Multi-image support Upload multiple source images for more context-aware editing and compositing workflows.
Flexible output sizing
Optionally set output dimensions, or leave size empty to preserve the original input dimensions.
Prompt Enhancer Built-in prompt enhancement can help improve edit quality and prompt clarity.
Production-ready workflow Suitable for high-quality retouching, style transfer, compositing, and more advanced creative editing tasks.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the desired edit. |
| images | Yes | Source images to edit. Multiple images are supported. |
| loras | No | List of LoRA adapters to apply during editing. |
| size | No | Output dimensions. Leave empty to match the input image dimensions. |
| seed | No | Random seed for reproducibility. Use -1 for random generation. |
Each item in the loras array supports:
| Field | Required | Description |
|---|---|---|
| path | Yes | URL to the LoRA weights file. |
| scale | No | LoRA weight multiplier. Default: 1. |
1 and fine-tune if needed.-1 for random generation, or enter a fixed seed for reproducible results.Turn this illustration into a realistic cinematic portrait, keep the same composition and facial features, add soft sunset lighting and natural skin texture.
| Item | Cost |
|---|---|
| Per image | $0.026 |
size, seed, and the number of LoRAs do not affect pricingsize empty when you want to preserve the original image dimensions.scale = 1 and adjust based on how strongly you want the adapter to influence the result.seed when comparing different prompts or LoRA combinations.prompt and images are required.size is not specified, the output matches the input image dimensions.Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/flux-2-klein-base-9b/edit-lora with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Flux 2 Klein Base 9b Edit Lora below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/flux-2-klein-base-9b/edit-lora" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"seed": -1,
"enable_sync_mode": false,
"enable_base64_output": false
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("wavespeed-ai/flux-2-klein-base-9b/edit-lora", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"seed": -1,
"enable_sync_mode": false,
"enable_base64_output": false
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"wavespeed-ai/flux-2-klein-base-9b/edit-lora",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"seed": -1,
"enable_sync_mode": false,
"enable_base64_output": false
}
)
print(output["outputs"][0]) # → URL of the generated outputFlux 2 Klein Base 9b Edit Lora is a WaveSpeedAI model for AI inference, exposed as a REST API on WaveSpeedAI. FLUX.2 [klein] Base 9B Edit with LoRA support is a high-quality image editing model with 9B parameters, offering precise modifications using natural language instructions and personalized styles via custom LoRA adapters. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/wavespeed-ai/flux-2-klein-base-9b-edit-lora.
Flux 2 Klein Base 9b Edit Lora starts at $0.026 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `images`, `seed`, `enable_base64_output`, `enable_sync_mode`, `loras`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/wavespeed-ai/flux-2-klein-base-9b-edit-lora.
Sign up for a free WaveSpeedAI account to claim starter credits, copy your API key from /accesskey, then call the endpoint shown in the API tab of the playground. The playground also auto-generates a code sample in Python, JavaScript, or cURL for the parameters you've set.
Commercial usage rights depend on the model's license, set by its provider (WaveSpeedAI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.