# Pelican Benchmark

| Field | Value |
|-------|-------|
| Date | 2026-04-04T20:17:02 NZST |
| Model | google/gemini-3.1-pro-preview |
| 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 500 500" width="100%" height="100%">
  <!-- Sky background -->
  <rect width="500" height="500" fill="#E0F7FA"/>
  
  <!-- Sun -->
  <circle cx="400" cy="100" r="40" fill="#FFEB3B" />
  
  <!-- Ground -->
  <rect y="400" width="500" height="100" fill="#81C784"/>
  <path d="M0 400 Q 100 390 250 400 T 500 400" fill="none" stroke="#388E3C" stroke-width="4"/>

  <!-- Bicycle -->
  <g stroke="#333" stroke-width="8" fill="none" stroke-linecap="round" stroke-linejoin="round">
    <!-- Wheels -->
    <circle cx="150" cy="350" r="50" />
    <circle cx="350" cy="350" r="50" />
    
    <!-- Spokes -->
    <g stroke-width="2" stroke="#666">
      <line x1="150" y1="300" x2="150" y2="400" />
      <line x1="100" y1="350" x2="200" y2="350" />
      <line x1="115" y1="315" x2="185" y2="385" />
      <line x1="185" y1="315" x2="115" y2="385" />
      
      <line x1="350" y1="300" x2="350" y2="400" />
      <line x1="300" y1="350" x2="400" y2="350" />
      <line x1="315" y1="315" x2="385" y2="385" />
      <line x1="385" y1="315" x2="315" y2="385" />
    </g>

    <!-- Frame -->
    <!-- Rear axle to seat -->
    <line x1="150" y1="350" x2="200" y2="220" stroke="#E53935" stroke-width="10" />
    <!-- Seat to front axle -->
    <line x1="200" y1="220" x2="320" y2="220" stroke="#E53935" stroke-width="10" />
    <!-- Front axle to bottom bracket -->
    <line x1="320" y1="220" x2="350" y2="350" stroke="#E53935" stroke-width="10" />
    <!-- Rear axle to bottom bracket -->
    <line x1="150" y1="350" x2="270" y2="350" stroke="#E53935" stroke-width="10" />
    <!-- Bottom bracket to seat -->
    <line x1="270" y1="350" x2="200" y2="220" stroke="#E53935" stroke-width="10" />
    <!-- Bottom bracket to front of top tube -->
    <line x1="270" y1="350" x2="320" y2="220" stroke="#E53935" stroke-width="10" />
    
    <!-- Fork -->
    <line x1="350" y1="350" x2="330" y2="180" stroke="#333" stroke-width="8" />
    
    <!-- Handlebars -->
    <path d="M 330 180 Q 300 160 310 140" />
    
    <!-- Seat post & Seat -->
    <line x1="200" y1="220" x2="190" y2="190" />
    <path d="M 160 190 L 220 190" stroke-width="15" stroke-linecap="round" />
    
    <!-- Chainring and pedals -->
    <circle cx="270" cy="350" r="20" stroke="#555" stroke-width="4"/>
    <line x1="270" y1="350" x2="270" y2="390" stroke="#333" stroke-width="6"/>
    <line x1="250" y1="390" x2="290" y2="390" stroke-width="10" />
  </g>

  <!-- Pelican -->
  <g>
    <!-- Legs -->
    <line x1="190" y1="190" x2="240" y2="300" stroke="#FF9800" stroke-width="8" stroke-linecap="round"/>
    <line x1="240" y1="300" x2="265" y2="385" stroke="#FF9800" stroke-width="8" stroke-linecap="round"/>
    <path d="M 255 385 L 285 385" stroke="#FF9800" stroke-width="8" stroke-linecap="round"/>
    
    <!-- Body -->
    <ellipse cx="190" cy="150" rx="55" ry="70" fill="#FFF" stroke="#CCC" stroke-width="3" transform="rotate(-15 190 150)"/>
    
    <!-- Wing -->
    <path d="M 160 120 Q 120 180 200 200 Q 220 160 160 120" fill="#F5F5F5" stroke="#CCC" stroke-width="3"/>
    
    <!-- Neck -->
    <path d="M 220 100 Q 240 70 240 100" fill="none" stroke="#FFF" stroke-width="25" stroke-linecap="round"/>
    <path d="M 215 95 Q 240 70 245 100" fill="none" stroke="#CCC" stroke-width="3" stroke-linecap="round"/>
    
    <!-- Head -->
    <circle cx="240" cy="50" r="25" fill="#FFF" stroke="#CCC" stroke-width="3"/>
    
    <!-- Eye -->
    <circle cx="250" cy="45" r="4" fill="#000" />
    
    <!-- Beak Upper -->
    <path d="M 260 45 Q 320 40 340 55 L 260 60 Z" fill="#FFC107" stroke="#FFA000" stroke-width="3"/>
    
    <!-- Beak Pouch -->
    <path d="M 255 58 Q 310 110 335 55 Z" fill="#FFE082" stroke="#FFA000" stroke-width="3"/>
  </g>
</svg>
```

## Reference

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