FLUX.1 [dev] FP8
accounts/fireworks/models/flux-1-dev-fp8
FLUX.1 [dev] is a 12 billion parameter rectified flow transformer capable of generating images from text descriptions. The FP8 version uses reduced precision numerics for 2x faster inference FLUX.1 [dev] FP8 is deployed as a Flumina app. See for more details: https://huggingface.co/fireworks-ai/FLUX.1-dev-fp8-flumina
FLUX.1 [dev] FP8 is available via Fireworks' serverless image API, where you pay per image step (per generated image) and do not need to configure GPUs.
On-demand deployments allow you to use FLUX.1 [dev] FP8 on dedicated GPUs with Fireworks' high-performance serving stack with high reliability and no rate limits.
Immediately run model on pre-configured GPUs and pay-per-token
accounts/fireworks/models/flux-1-dev-fp8
import requests url = "https://api.fireworks.ai/inference/v1/workflows/accounts/fireworks/models/accounts/fireworks/models/flux-1-dev-fp8/text_to_image" headers = { "Content-Type": "application/json", "Accept": "image/jpeg", "Authorization": "Bearer $API_KEY", } data = { "prompt": "A beautiful sunset over the ocean" } response = requests.post(url, headers=headers, json=data) if response.status_code == 200: with open("a.jpg", "wb") as f: f.write(response.content) print("Image saved as a.jpg") else: print("Error:", response.status_code, response.text)