Prediction
black-forest-labs/flux-1.1-pro-ultraInput
- raw
- prompt
- a cute puppy in Copenhagen with a sign hanging around its neck saying "Jeg er fake", in Danish
- aspect_ratio
- 3:2
- output_format
- jpg
- safety_tolerance
- 2
- image_prompt_strength
- 0.1
{
"raw": false,
"prompt": "a cute puppy in Copenhagen with a sign hanging around its neck saying \"Jeg er fake\", in Danish",
"aspect_ratio": "3:2",
"output_format": "jpg",
"safety_tolerance": 2,
"image_prompt_strength": 0.1
}
Install Replicate’s Node.js client library:
npm install replicate
Set the
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the client:
import Replicate from "replicate";
const replicate = new Replicate({
auth: process.env.REPLICATE_API_TOKEN,
});
Run black-forest-labs/flux-1.1-pro-ultra using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const input = {
raw: false,
prompt: "a cute puppy in Copenhagen with a sign hanging around its neck saying \"Jeg er fake\", in Danish",
aspect_ratio: "3:2",
output_format: "jpg",
safety_tolerance: 2,
image_prompt_strength: 0.1
};
const output = await replicate.run("black-forest-labs/flux-1.1-pro-ultra", { input });
console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:
pip install replicate
Set the
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the client:
import replicate
Run black-forest-labs/flux-1.1-pro-ultra using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"black-forest-labs/flux-1.1-pro-ultra",
input={
"raw": False,
"prompt": "a cute puppy in Copenhagen with a sign hanging around its neck saying \"Jeg er fake\", in Danish",
"aspect_ratio": "3:2",
"output_format": "jpg",
"safety_tolerance": 2,
"image_prompt_strength": 0.1
}
)
print(output)
To learn more, take a look at the guide on getting started with Python.
Set the
REPLICATE_API_TOKEN
environment variable:export REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run black-forest-labs/flux-1.1-pro-ultra using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \
-H "Authorization: Bearer $REPLICATE_API_TOKEN" \
-H "Content-Type: application/json" \
-H "Prefer: wait" \
-d $'{
"input": {
"raw": false,
"prompt": "a cute puppy in Copenhagen with a sign hanging around its neck saying \\"Jeg er fake\\", in Danish",
"aspect_ratio": "3:2",
"output_format": "jpg",
"safety_tolerance": 2,
"image_prompt_strength": 0.1
}
}' \
https://api.replicate.com/v1/models/black-forest-labs/flux-1.1-pro-ultra/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{
"completed_at": "2025-02-26T13:14:51.656717Z",
"created_at": "2025-02-26T13:14:42.259000Z",
"data_removed": false,
"error": null,
"id": "pteqj21etdrme0cn89jsjy60nr",
"input": {
"raw": false,
"prompt": "a cute puppy in Copenhagen with a sign hanging around its neck saying \"Jeg er fake\", in Danish",
"aspect_ratio": "3:2",
"output_format": "jpg",
"safety_tolerance": 2,
"image_prompt_strength": 0.1
},
"logs": "Running prediction... \nUsing seed: 11109\nGenerating image...\nGenerated image in 9.3sec\nDownloaded image in 0.06sec",
"metrics": {
"image_count": 1,
"predict_time": 9.392596738,
"total_time": 9.397717
},
"output": "https://replicate.delivery/xezq/S5tVBQWJ66K3Hd1LoGO8rnXehHSg2Oo3JIjQrw3z4HklLmJKA/tmpss4xhyp8.jpg",
"started_at": "2025-02-26T13:14:42.264120Z",
"status": "succeeded",
"urls": {
"stream": "https://stream.replicate.com/v1/files/bcwr-4gvo6sypfsmjwgyshezv5w5v5qtnbg5e2l4nm3aanapttegyoneq",
"get": "https://api.replicate.com/v1/predictions/pteqj21etdrme0cn89jsjy60nr",
"cancel": "https://api.replicate.com/v1/predictions/pteqj21etdrme0cn89jsjy60nr/cancel"
},
"version": "hidden"
}
Generated in
Running prediction...
Using seed: 11109
Generating image...
Generated image in 9.3sec
Downloaded image in 0.06sec