Image Generation
Flux Pro (BFL)
standardFlux Pro (BFL) is an reliable image generation provider offering Image Generation, Image Editing, Pro Image Generation through Aweb's unified API. It features none streaming support with standard-tier latency.
Specifications
Capabilities (3)
Quick start
Use Flux Pro (BFL) through Alfred's unified API — no provider-specific SDK needed.
cURL
curl -X POST https://api.alfred-ai.app/v1/execute \
-H "Authorization: Bearer $ALFRED_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"provider": "fluxpro",
"capability": "image.generate",
"input": { "prompt": "Hello from Flux Pro (BFL)!" }
}'TypeScript
import { Alfred } from '@alfred/core';
const alfred = new Alfred({ apiKey: process.env.ALFRED_API_KEY });
const result = await alfred.execute({
provider: 'fluxpro',
capability: 'image.generate',
input: { prompt: 'Hello from Flux Pro (BFL)!' },
});
console.log(result.output);