Skip to main content

Try Krea 2 Large in the Workbench

Run this model interactively, tune parameters, and compare outputs.
Model ID: krea-v2-large-text-to-image Krea 2 Large is Krea’s text-to-image model, served through Fal. It generates high-fidelity images from text with strong aesthetic quality and fine detail. The model supports a range of aspect ratios, a creativity control that trades prompt adherence for more imaginative results, and seed control for reproducible generation. It also accepts optional image style references, which can be weighted to control how strongly they influence the output.

Example request

Use the Workbench as a request builder: configure parameters for this model in the UI, then open the API tab to copy the exact cURL or Python call.
See the image generation reference for more details.
curl -X POST https://hub.oxen.ai/api/ai/images/generate \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OXEN_API_KEY" \
  -d '{
  "model": "krea-v2-large-text-to-image",
  "prompt": "A Van Gogh-tinged Proven\u00e7al farmhouse under starry nights."
}'

Fetch model details

The models endpoint returns the full model object, including its json_request_schema.
curl -H "Authorization: Bearer $OXEN_API_KEY" https://hub.oxen.ai/api/ai/models/krea-v2-large-text-to-image

Request parameters

Required parameters

FieldTypeDefaultDescription
promptstring"A Van Gogh-tinged Proven\u00e7al farmhouse under starry nights."Text description of the image to generate.

Optional parameters

FieldTypeDefaultDescription
image_style_referencesarray<object>Optional list of reference image URLs that guide the style of the generated image. At most 10 entries.
aspect_ratiostring"1:1"Aspect ratio of the generated image. One of: 1:1, 4:3, 3:2, 16:9, 2.35:1, 4:5, 2:3, 9:16.
creativitystring"medium"Controls how loosely the model interprets the prompt. Higher means more creative results that may drift from the prompt; low or raw values stay closer to the prompt. One of: raw, low, medium, high.
seedintegerRandom seed for reproducible generation.