Skip to content

Instantly share code, notes, and snippets.

@simonw
Last active May 28, 2026 19:54
Show Gist options
  • Select an option

  • Save simonw/fea4f7546626d627862dc241a4e3a86a to your computer and use it in GitHub Desktop.

Select an option

Save simonw/fea4f7546626d627862dc241a4e3a86a to your computer and use it in GitHub Desktop.

2026-05-28T19:23:29 conversation: 01ksr0nxcb2e6fdtte2dq42dfq id: 01ksr0ncsbqhqkbj6zaw20v3a3

Model: anthropic/claude-opus-4-8

Prompt

Generate an SVG of a pelican riding a bicycle

Options

  • thinking: True
  • thinking_effort: low

Response

I'll create an SVG of a pelican riding a bicycle for you!

<svg width="500" height="400" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="500" height="400" fill="#87CEEB"/>
  
  <!-- Ground -->
  <rect y="350" width="500" height="50" fill="#90EE90"/>
  
  <!-- Bicycle -->
  <g stroke="#333" stroke-width="4" fill="none">
    <!-- Back wheel -->
    <circle cx="150" cy="300" r="50"/>
    <!-- Front wheel -->
    <circle cx="320" cy="300" r="50"/>
    <!-- Frame -->
    <line x1="150" y1="300" x2="230" y2="240"/>
    <line x1="230" y1="240" x2="320" y2="300"/>
    <line x1="230" y1="240" x2="200" y2="300"/>
    <line x1="150" y1="300" x2="200" y2="300"/>
    <!-- Seat post -->
    <line x1="230" y1="240" x2="230" y2="200"/>
    <!-- Handlebar post -->
    <line x1="320" y1="300" x2="340" y2="220"/>
    <line x1="340" y1="220" x2="365" y2="220"/>
  </g>
  
  <!-- Wheel spokes -->
  <g stroke="#666" stroke-width="2">
    <line x1="150" y1="250" x2="150" y2="350"/>
    <line x1="100" y1="300" x2="200" y2="300"/>
    <line x1="320" y1="250" x2="320" y2="350"/>
    <line x1="270" y1="300" x2="370" y2="300"/>
  </g>
  
  <!-- Pedals -->
  <circle cx="200" cy="300" r="8" fill="#333"/>
  
  <!-- Seat -->
  <ellipse cx="230" cy="198" rx="20" ry="6" fill="#333"/>
  
  <!-- Pelican Body -->
  <ellipse cx="230" cy="160" rx="40" ry="50" fill="#F5F5F5"/>
  
  <!-- Pelican Wing -->
  <ellipse cx="215" cy="160" rx="25" ry="40" fill="#E0E0E0"/>
  
  <!-- Pelican Neck -->
  <path d="M 250 130 Q 280 110 290 80" stroke="#F5F5F5" stroke-width="22" fill="none" stroke-linecap="round"/>
  
  <!-- Pelican Head -->
  <circle cx="295" cy="75" r="22" fill="#F5F5F5"/>
  
  <!-- Pelican Eye -->
  <circle cx="302" cy="70" r="4" fill="#333"/>
  
  <!-- Pelican Beak (upper) -->
  <path d="M 310 72 L 365 78 L 310 85 Z" fill="#FFA500"/>
  
  <!-- Pelican Beak pouch -->
  <path d="M 310 80 Q 340 100 360 80 L 310 78 Z" fill="#FFB732"/>
  
  <!-- Pelican Legs (pedaling) -->
  <line x1="225" y1="200" x2="200" y2="295" stroke="#FFA500" stroke-width="6"/>
  <line x1="235" y1="200" x2="215" y2="300" stroke="#FFA500" stroke-width="6"/>
  
  <!-- Pelican feet -->
  <ellipse cx="198" cy="298" rx="10" ry="5" fill="#FFA500"/>
  
  <!-- Pelican Tail -->
  <path d="M 195 165 L 165 175 L 195 185 Z" fill="#E0E0E0"/>
  
  <!-- Wing detail (in motion) -->
  <path d="M 210 145 Q 180 130 175 110" stroke="#E0E0E0" stroke-width="12" fill="none" stroke-linecap="round"/>
</svg>

I've created a cheerful pelican riding a bicycle! The illustration features:

  • 🚲 A bicycle with two wheels, frame, pedals, and handlebars
  • 🦤 A pelican with its characteristic large orange beak and pouch
  • 🦵 Legs positioned as if pedaling
  • 🪶 A wing extended for balance
  • 🌳 A simple sky and grass background

The pelican is sitting on the bike seat with its long neck and distinctive beak proudly displayed. Feel free to ask if you'd like me to adjust any colors, proportions, or add more details!

Token usage

25 input, 1,611 output

2026-05-28T19:34:08 conversation: 01ksr19dkw1hshcnxe5xg1z7k6 id: 01ksr18vw39ey636hnt8ewky8f

Model: anthropic/claude-opus-4-8

Prompt

Generate an SVG of a pelican riding a bicycle

Options

  • thinking: True
  • thinking_effort: medium

Response

I'll create an SVG of a pelican riding a bicycle for you!

<svg width="400" height="400" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="400" height="400" fill="#87CEEB"/>
  
  <!-- Ground -->
  <rect y="320" width="400" height="80" fill="#90EE90"/>
  
  <!-- Bicycle -->
  <g stroke="#333" stroke-width="4" fill="none">
    <!-- Back wheel -->
    <circle cx="120" cy="290" r="45"/>
    <!-- Front wheel -->
    <circle cx="280" cy="290" r="45"/>
    <!-- Frame -->
    <line x1="120" y1="290" x2="200" y2="290"/>
    <line x1="200" y1="290" x2="170" y2="220"/>
    <line x1="120" y1="290" x2="170" y2="220"/>
    <line x1="170" y1="220" x2="280" y2="290"/>
    <line x1="200" y1="290" x2="230" y2="220"/>
    <line x1="230" y1="220" x2="280" y2="290"/>
    <!-- Seat post -->
    <line x1="170" y1="220" x2="170" y2="190"/>
    <!-- Handlebar post -->
    <line x1="230" y1="220" x2="230" y2="180"/>
    <line x1="215" y1="180" x2="250" y2="180"/>
  </g>
  
  <!-- Bicycle seat -->
  <ellipse cx="170" cy="188" rx="18" ry="6" fill="#333"/>
  
  <!-- Pedals -->
  <circle cx="200" cy="290" r="6" fill="#333"/>
  <line x1="200" y1="290" x2="200" y2="310" stroke="#333" stroke-width="3"/>
  <rect x="190" y="310" width="20" height="6" fill="#333"/>
  
  <!-- Pelican Body -->
  <ellipse cx="175" cy="160" rx="35" ry="45" fill="#FFFFFF"/>
  
  <!-- Pelican Wing -->
  <ellipse cx="165" cy="165" rx="25" ry="35" fill="#F0F0F0"/>
  
  <!-- Pelican Neck -->
  <path d="M 195 130 Q 215 110 220 90" stroke="#FFFFFF" stroke-width="22" fill="none" stroke-linecap="round"/>
  
  <!-- Pelican Head -->
  <circle cx="225" cy="80" r="22" fill="#FFFFFF"/>
  
  <!-- Pelican Eye -->
  <circle cx="232" cy="73" r="4" fill="#333"/>
  
  <!-- Pelican Beak (upper) -->
  <path d="M 240 78 L 290 85 L 240 92 Z" fill="#FFA500"/>
  
  <!-- Pelican Beak pouch -->
  <path d="M 240 88 Q 265 105 285 88 L 240 92 Z" fill="#FFB732"/>
  
  <!-- Pelican Legs (pedaling) -->
  <line x1="170" y1="195" x2="195" y2="290" stroke="#FFA500" stroke-width="6" stroke-linecap="round"/>
  <line x1="180" y1="195" x2="200" y2="310" stroke="#FFA500" stroke-width="6" stroke-linecap="round"/>
  
  <!-- Pelican feet -->
  <ellipse cx="195" cy="290" rx="8" ry="4" fill="#FFA500"/>
  
  <!-- Pelican Wing detail (holding handlebar) -->
  <path d="M 195 150 Q 220 160 235 178" stroke="#F0F0F0" stroke-width="14" fill="none" stroke-linecap="round"/>
  
  <!-- Tail feathers -->
  <path d="M 145 175 L 120 190 M 145 180 L 122 200 M 145 185 L 128 208" stroke="#F0F0F0" stroke-width="5" stroke-linecap="round"/>
</svg>

I've created an SVG featuring a pelican riding a bicycle! Here are the key elements:

  • The bicycle: Two wheels connected by a frame, complete with a seat, handlebars, and pedals
  • The pelican: Featuring its characteristic large orange beak with a pouch, white body, a wing, and webbed feet
  • Action details: The pelican's legs are positioned as if pedaling, and its wing reaches toward the handlebars
  • Scenery: A blue sky background with green grass

You can copy this code into an HTML file or SVG viewer to see the result. Feel free to ask if you'd like me to adjust the colors, proportions, or add any additional details! 🦤🚲

Token usage

25 input, 1,690 output

2026-05-28T19:34:29 conversation: 01ksr1a0ys8d8k1719tj3g3m7n id: 01ksr19gzzy3ghxrwwaatgp9gt

Model: anthropic/claude-opus-4-8

Prompt

Generate an SVG of a pelican riding a bicycle

Options

  • thinking: True
  • thinking_effort: high

Response

Here's an SVG of a pelican riding a bicycle:

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300" width="400" height="300">
  <!-- Background -->
  <rect width="400" height="300" fill="#e6f7ff"/>
  <circle cx="60" cy="50" r="25" fill="#fff8dc" opacity="0.8"/>
  
  <!-- Ground -->
  <line x1="0" y1="260" x2="400" y2="260" stroke="#8fbc8f" stroke-width="4"/>

  <!-- Bicycle -->
  <g stroke="#333" stroke-width="4" fill="none">
    <!-- Rear wheel -->
    <circle cx="110" cy="220" r="40" stroke="#222"/>
    <!-- Front wheel -->
    <circle cx="290" cy="220" r="40" stroke="#222"/>
    <!-- Frame -->
    <line x1="110" y1="220" x2="180" y2="220"/>
    <line x1="180" y1="220" x2="210" y2="160"/>
    <line x1="110" y1="220" x2="210" y2="160"/>
    <line x1="210" y1="160" x2="290" y2="220"/>
    <line x1="180" y1="220" x2="290" y2="220"/>
    <!-- Seat post -->
    <line x1="180" y1="220" x2="170" y2="150"/>
    <!-- Handlebar post -->
    <line x1="210" y1="160" x2="230" y2="130"/>
    <line x1="230" y1="130" x2="255" y2="130"/>
  </g>

  <!-- Wheel spokes -->
  <g stroke="#888" stroke-width="1.5">
    <line x1="110" y1="180" x2="110" y2="260"/>
    <line x1="70" y1="220" x2="150" y2="220"/>
    <line x1="290" y1="180" x2="290" y2="260"/>
    <line x1="250" y1="220" x2="330" y2="220"/>
  </g>

  <!-- Pedals -->
  <circle cx="180" cy="220" r="8" fill="#444"/>
  <line x1="180" y1="220" x2="195" y2="240" stroke="#333" stroke-width="3"/>

  <!-- Seat -->
  <ellipse cx="168" cy="148" rx="15" ry="5" fill="#333"/>

  <!-- Pelican -->
  <g>
    <!-- Body -->
    <ellipse cx="175" cy="130" rx="45" ry="35" fill="#ffffff" stroke="#ddd" stroke-width="1.5"/>
    <!-- Wing -->
    <path d="M165 115 Q200 110 210 140 Q185 150 160 140 Z" fill="#f0f0f0" stroke="#ccc" stroke-width="1.5"/>
    <!-- Leg to pedal -->
    <line x1="180" y1="160" x2="192" y2="230" stroke="#ffa500" stroke-width="4"/>
    
    <!-- Neck -->
    <path d="M205 110 Q230 95 240 75" fill="none" stroke="#ffffff" stroke-width="20" stroke-linecap="round"/>
    
    <!-- Head -->
    <circle cx="245" cy="70" r="20" fill="#ffffff" stroke="#ddd" stroke-width="1.5"/>
    
    <!-- Eye -->
    <circle cx="252" cy="65" r="4" fill="#333"/>
    
    <!-- Beak (upper) -->
    <path d="M260 68 L310 75 L260 80 Z" fill="#ffb347" stroke="#e69500" stroke-width="1.5"/>
    <!-- Pouch -->
    <path d="M262 78 Q290 95 305 76 L260 80 Z" fill="#ffd27f" stroke="#e69500" stroke-width="1.5"/>
  </g>
</svg>

This SVG features a cheerful pelican with its distinctive long beak and throat pouch, perched on a bicycle seat with its leg reaching down to the pedal. Feel free to tweak the colors or proportions to your liking!

Token usage

25 input, 1,587 output

2026-05-28T19:34:48 conversation: 01ksr1asnvvkm66jb17wcr9gwp id: 01ksr1a3p997mcggxhqvccez5m

Model: anthropic/claude-opus-4-8

Prompt

Generate an SVG of a pelican riding a bicycle

Options

  • thinking: True
  • thinking_effort: xhigh

Response

Here's an SVG of a pelican riding a bicycle:

<svg width="500" height="400" viewBox="0 0 500 400" xmlns="http://www.w3.org/2000/svg">
  <!-- Sky background -->
  <rect width="500" height="400" fill="#87CEEB"/>
  
  <!-- Ground -->
  <rect y="340" width="500" height="60" fill="#90C695"/>
  
  <!-- Sun -->
  <circle cx="440" cy="60" r="35" fill="#FFD700"/>
  
  <!-- Bicycle -->
  <g stroke="#333" stroke-width="4" fill="none">
    <!-- Rear wheel -->
    <circle cx="140" cy="300" r="50" stroke-width="5"/>
    <circle cx="140" cy="300" r="5" fill="#333"/>
    <!-- Front wheel -->
    <circle cx="340" cy="300" r="50" stroke-width="5"/>
    <circle cx="340" cy="300" r="5" fill="#333"/>
    <!-- Frame -->
    <line x1="140" y1="300" x2="240" y2="300"/>
    <line x1="240" y1="300" x2="200" y2="220"/>
    <line x1="200" y1="220" x2="140" y2="300"/>
    <line x1="240" y1="300" x2="340" y2="300"/>
    <line x1="200" y1="220" x2="290" y2="230"/>
    <!-- Seat post -->
    <line x1="200" y1="220" x2="195" y2="195"/>
    <!-- Handlebar post -->
    <line x1="290" y1="230" x2="340" y2="300"/>
    <line x1="290" y1="230" x2="300" y2="200"/>
    <!-- Handlebars -->
    <line x1="300" y1="200" x2="320" y2="195" stroke-width="5"/>
  </g>
  
  <!-- Seat -->
  <ellipse cx="193" cy="192" rx="18" ry="7" fill="#333"/>
  
  <!-- Pedals -->
  <g stroke="#333" stroke-width="4">
    <line x1="240" y1="300" x2="225" y2="320"/>
    <line x1="215" y1="320" x2="235" y2="320" stroke-width="6"/>
  </g>
  
  <!-- Pelican -->
  <g>
    <!-- Legs -->
    <line x1="200" y1="195" x2="225" y2="315" stroke="#FF8C00" stroke-width="6"/>
    <line x1="210" y1="195" x2="235" y2="320" stroke="#FF8C00" stroke-width="6"/>
    
    <!-- Tail -->
    <path d="M 150 175 Q 120 165 110 185 Q 130 185 155 190 Z" fill="#E8E8E8"/>
    
    <!-- Body -->
    <ellipse cx="195" cy="170" rx="55" ry="42" fill="#FFFFFF"/>
    <ellipse cx="195" cy="170" rx="55" ry="42" fill="none" stroke="#DDD" stroke-width="2"/>
    
    <!-- Wing -->
    <path d="M 180 150 Q 220 140 240 175 Q 215 190 180 180 Z" fill="#F0F0F0" stroke="#DDD" stroke-width="2"/>
    <path d="M 195 155 Q 225 155 235 175" fill="none" stroke="#CCC" stroke-width="2"/>
    
    <!-- Neck -->
    <path d="M 215 140 Q 240 110 255 90 L 270 100 Q 250 125 235 150 Z" fill="#FFFFFF" stroke="#DDD" stroke-width="2"/>
    
    <!-- Head -->
    <circle cx="270" cy="85" r="28" fill="#FFFFFF" stroke="#DDD" stroke-width="2"/>
    
    <!-- Eye -->
    <circle cx="280" cy="78" r="6" fill="#FFF"/>
    <circle cx="282" cy="78" r="4" fill="#000"/>
    <circle cx="283" cy="76" r="1.5" fill="#FFF"/>
    
    <!-- Upper beak -->
    <path d="M 290 80 Q 350 75 370 82 Q 350 88 295 92 Z" fill="#FFB347" stroke="#FF8C00" stroke-width="1.5"/>
    
    <!-- Lower beak with pouch -->
    <path d="M 293 90 Q 340 95 365 88 Q 360 120 320 125 Q 295 120 290 95 Z" fill="#FFA500" stroke="#FF8C00" stroke-width="1.5"/>
    
    <!-- Pouch detail -->
    <path d="M 300 95 Q 330 110 355 95" fill="none" stroke="#FF8C00" stroke-width="1.5"/>
  </g>
  
  <!-- Wing (front) waving -->
  <path d="M 200 150 Q 175 120 160 100 Q 175 105 195 145 Z" fill="#F0F0F0" stroke="#DDD" stroke-width="2"/>
</svg>

This SVG features:

  • A pelican with its characteristic large beak and throat pouch (in orange)
  • White feathered body and head with a friendly eye
  • A bicycle with two wheels, frame, pedals, and handlebars
  • The pelican's legs reaching down to the pedals
  • A cheerful background with sky, sun, and grass

You can copy this code into an .svg file or an HTML document to view it. Feel free to adjust colors, sizes, or positions to your liking! 🚲🦤

Token usage

25 input, 2,109 output

2026-05-28T19:50:41 conversation: 01ksr2dbnhbpxqq7wnxvczttks id: 01ksr2761q3qpgwzygp5a84tbx

Model: anthropic/claude-opus-4-8

Prompt

Generate an SVG of a pelican riding a bicycle

Options

  • max_tokens: 128000
  • thinking: True
  • thinking_effort: max

Response

Here's an SVG of a pelican riding a bicycle:

<svg width="500" height="500" viewBox="0 0 500 500" xmlns="http://www.w3.org/2000/svg">
  <!-- Sky -->
  <rect width="500" height="500" fill="#d6f0fb"/>

  <!-- Sun -->
  <circle cx="445" cy="60" r="34" fill="#ffe082"/>

  <!-- Clouds -->
  <g fill="#ffffff" opacity="0.92">
    <ellipse cx="95" cy="85" rx="35" ry="20"/>
    <ellipse cx="128" cy="88" rx="28" ry="16"/>
    <ellipse cx="62" cy="92" rx="24" ry="14"/>
  </g>

  <!-- Ground -->
  <rect x="0" y="430" width="500" height="70" fill="#9ccc65"/>
  <line x1="0" y1="430" x2="500" y2="430" stroke="#7cb342" stroke-width="4"/>

  <!-- ===== BICYCLE ===== -->
  <!-- Spokes -->
  <g stroke="#b0bec5" stroke-width="1.5">
    <line x1="150" y1="400" x2="150" y2="342"/><line x1="150" y1="400" x2="150" y2="458"/>
    <line x1="150" y1="400" x2="92" y2="400"/><line x1="150" y1="400" x2="208" y2="400"/>
    <line x1="150" y1="400" x2="191" y2="359"/><line x1="150" y1="400" x2="109" y2="441"/>
    <line x1="150" y1="400" x2="109" y2="359"/><line x1="150" y1="400" x2="191" y2="441"/>
    <line x1="370" y1="400" x2="370" y2="342"/><line x1="370" y1="400" x2="370" y2="458"/>
    <line x1="370" y1="400" x2="312" y2="400"/><line x1="370" y1="400" x2="428" y2="400"/>
    <line x1="370" y1="400" x2="411" y2="359"/><line x1="370" y1="400" x2="329" y2="441"/>
    <line x1="370" y1="400" x2="329" y2="359"/><line x1="370" y1="400" x2="411" y2="441"/>
  </g>
  <!-- Tires -->
  <circle cx="150" cy="400" r="58" fill="none" stroke="#263238" stroke-width="7"/>
  <circle cx="370" cy="400" r="58" fill="none" stroke="#263238" stroke-width="7"/>
  <circle cx="150" cy="400" r="6" fill="#555"/>
  <circle cx="370" cy="400" r="6" fill="#555"/>

  <!-- Frame -->
  <g stroke="#e53935" stroke-width="7" fill="none" stroke-linecap="round">
    <line x1="250" y1="400" x2="150" y2="400"/>
    <line x1="250" y1="400" x2="215" y2="288"/>
    <line x1="250" y1="400" x2="345" y2="300"/>
    <line x1="215" y1="288" x2="345" y2="300"/>
    <line x1="150" y1="400" x2="215" y2="288"/>
    <line x1="345" y1="300" x2="370" y2="400"/>
  </g>
  <!-- Handlebar & seat -->
  <line x1="345" y1="300" x2="356" y2="262" stroke="#37474f" stroke-width="6" stroke-linecap="round"/>
  <line x1="336" y1="259" x2="376" y2="259" stroke="#37474f" stroke-width="6" stroke-linecap="round"/>
  <path d="M 193 285 Q 215 277 237 285 Q 215 296 193 285 Z" fill="#37474f"/>

  <!-- Crank & pedals -->
  <circle cx="250" cy="400" r="8" fill="#37474f"/>
  <line x1="250" y1="400" x2="266" y2="434" stroke="#37474f" stroke-width="5"/>
  <rect x="260" y="432" width="22" height="6" rx="2" fill="#263238"/>
  <line x1="250" y1="400" x2="234" y2="366" stroke="#37474f" stroke-width="5"/>
  <rect x="222" y="363" width="22" height="6" rx="2" fill="#263238"/>

  <!-- ===== PELICAN ===== -->
  <!-- Tail -->
  <path d="M 165 240 L 118 214 L 160 272 Z" fill="#eceff1" stroke="#cfd8dc" stroke-width="2"/>

  <!-- Legs (drawn before body so tops tuck under) -->
  <line x1="248" y1="296" x2="233" y2="368" stroke="#ef6c00" stroke-width="7" stroke-linecap="round"/>
  <line x1="242" y1="298" x2="270" y2="432" stroke="#fb8c00" stroke-width="7" stroke-linecap="round"/>
  <line x1="270" y1="432" x2="284" y2="437" stroke="#fb8c00" stroke-width="6" stroke-linecap="round"/>

  <!-- Body -->
  <ellipse cx="235" cy="248" rx="85" ry="58" fill="#fafafa" stroke="#cfd8dc" stroke-width="2"/>

  <!-- Folded wing -->
  <path d="M 175 230 Q 230 214 292 246 Q 235 272 185 258 Q 168 244 175 230 Z" fill="#eceff1" stroke="#cfd8dc" stroke-width="2"/>
  <path d="M 200 236 Q 245 241 286 253" fill="none" stroke="#cfd8dc" stroke-width="2"/>

  <!-- Front wing reaching handlebar -->
  <path d="M 280 224 Q 335 228 357 256 Q 342 263 326 257 Q 305 250 280 241 Z" fill="#e3e9ec" stroke="#cfd8dc" stroke-width="2"/>

  <!-- Neck -->
  <path d="M 285 220 Q 305 155 337 150" stroke="#fafafa" stroke-width="36" fill="none" stroke-linecap="round"/>

  <!-- Head -->
  <circle cx="337" cy="136" r="32" fill="#fafafa" stroke="#cfd8dc" stroke-width="2"/>

  <!-- Pouch (lower beak) -->
  <path d="M 363 152 Q 412 208 468 145 Z" fill="#ffca28" stroke="#fb8c00" stroke-width="2"/>
  <!-- Upper beak -->
  <path d="M 360 120 L 472 143 L 363 152 Z" fill="#ffb300" stroke="#fb8c00" stroke-width="2"/>

  <!-- Eye -->
  <circle cx="349" cy="127" r="6" fill="#263238"/>
  <circle cx="351" cy="125" r="2" fill="#ffffff"/>
</svg>

I designed it with:

  • A red-framed bicycle with spoked wheels, pedals, handlebars, and a seat
  • A pelican perched on top, with its signature long orange beak and pouch, an S-curved neck, a folded wing, and a "wing-hand" reaching for the handlebars
  • Its little legs stretching down to the pedals, plus a sunny sky with clouds for a cheerful scene

Want me to make it more cartoonish, add motion lines, or adjust the colors?

Token usage

25 input, 17,167 output

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment