Submit an image generation or edit job. Returns immediately with an opaque job ID to poll via GET /generations/{id}.
Create a generation
package main
import (
"context"
"fmt"
"github.com/lumalabs/luma-agents-go"
"github.com/lumalabs/luma-agents-go/option"
)
func main() {
client := lumaagents.NewClient(
option.WithAuthToken("My Auth Token"),
)
generation, err := client.Generations.New(context.TODO(), lumaagents.GenerationNewParams{
Prompt: lumaagents.F("A glass of iced coffee on a marble countertop, morning light streaming through a window"),
})
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", 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"
}
]
}