Create a generation
client.generations.create(GenerationCreateParams { prompt, aspect_ratio, image_ref, 7 more } body, RequestOptionsoptions?): Generation { id, created_at, model, 5 more }
POST/generations
Submit an image generation or edit job. Returns immediately with an opaque job ID to poll via GET /generations/{id}.
Create a generation
import Luma from 'luma-agents';
const client = new Luma({
authToken: process.env['LUMA_AGENTS_API_KEY'], // This is the default and can be omitted
});
const generation = await client.generations.create({
prompt: 'A glass of iced coffee on a marble countertop, morning light streaming through a window',
});
console.log(generation.id);{
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"created_at": "created_at",
"model": "uni-1",
"state": "queued",
"type": "image",
"failure_code": "content_moderated",
"failure_reason": "failure_reason",
"output": [
{
"type": "type",
"url": "https://example.com"
}
]
}Returns Examples
{
"id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"created_at": "created_at",
"model": "uni-1",
"state": "queued",
"type": "image",
"failure_code": "content_moderated",
"failure_reason": "failure_reason",
"output": [
{
"type": "type",
"url": "https://example.com"
}
]
}