> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mynth.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Prefect Pony XL LoRA

> Use Prefect Pony XL LoRA with the Mynth SDK or REST API. Capabilities, inputs, auto size, and magic prompt.

```text Model ID theme={"theme":"kanagawa-dragon"}
goofy-ai/prefect-pony-xl-lora
```

See pricing & more on [mynth.io](https://mynth.io/models/goofy-ai%2Fprefect-pony-xl-lora).

## Capabilities

|                      |               |
| -------------------- | ------------- |
| **Modes**            | Text-to-image |
| **Inputs**           | None          |
| **Native auto size** | No            |
| **Magic prompt**     | Supported     |

Prefect Pony XL LoRA is Goofy\_Ai's Pony/SDXL anime checkpoint. Tag-style prompts work well, including quality tags such as `score_9, score_8_up, score_7_up`. This integration is text-to-image only.

## Generate

<CodeGroup>
  ```ts Mynth SDK theme={"theme":"kanagawa-dragon"}
  import Mynth from "@mynthio/sdk";

  const mynth = new Mynth();

  const task = await mynth.image.generate({
    prompt:
      "score_9, score_8_up, score_7_up, 1girl, silver hair, blue eyes, white summer dress, sunflower field, looking at viewer",
    model: "goofy-ai/prefect-pony-xl-lora",
    size: "portrait",
    count: 1,
  });

  console.log(task.urls);
  ```

  ```bash REST API theme={"theme":"kanagawa-dragon"}
  curl https://api.mynth.io/image/generate \
    -X POST \
    -H "Authorization: Bearer $MYNTH_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "prompt": "score_9, score_8_up, score_7_up, 1girl, silver hair, blue eyes, white summer dress, sunflower field, looking at viewer",
      "model": "goofy-ai/prefect-pony-xl-lora",
      "size": "portrait",
      "count": 1
    }'
  ```
</CodeGroup>
