# Pelican Benchmark

| Field | Value |
|-------|-------|
| Date | 2026-04-06T22:30:47 NZST |
| Model | deepseek-v3p2 |
| Reasoning | default |
| Prompt | Generate an SVG of a pelican riding a bicycle |

## SVG Output

```svg
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300">
  <!-- Bicycle frame -->
  <rect x="100" y="140" width="120" height="20" fill="silver"/>
  <rect x="180" y="100" width="20" height="60" fill="silver"/>
  <circle cx="120" cy="180" r="30" fill="gray" stroke="black" stroke-width="2"/>
  <circle cx="250" cy="180" r="30" fill="gray" stroke="black" stroke-width="2"/>
  
  <!-- Pelican body -->
  <ellipse cx="150" cy="90" rx="40" ry="30" fill="white" stroke="black" stroke-width="2"/>
  <!-- Pelican beak -->
  <path d="M 190 90 L 250 90 L 220 70 Z" fill="orange"/>
  <!-- Pelican eye -->
  <circle cx="170" cy="85" r="5" fill="black"/>
  
  <!-- Bicycle seat -->
  <rect x="160" y="80" width="10" height="20" fill="brown"/>
  
  <!-- Handlebar -->
  <rect x="200" y="70" width="5" height="40" fill="silver"/>
  <rect x="185" y="70" width="30" height="5" fill="silver"/>
</svg>
```

## Reference

Inspired by [Simon Willison's pelican-on-a-bicycle benchmark](https://simonwillison.net/2026/Mar/17/mini-and-nano/).