back to gallery

BuseyBench SVG Test

Llama 3.3 70B Instruct

Generated by Meta on Jul 1, 2026 using prompt svg-v1-no-web.

Model release
Dec 2024
Cost
$0.000386
Tokens used
1,058 tokens142 prompt / 916 output
Llama 3.3 70B Instruct benchmark output

Run Telemetry

Jul 1, 2026
20 seconds
$0.000386
1,058 tokens

Prompt

Create a standalone SVG portrait of Gary Busey's face. Output only valid SVG markup. Do not wrap the SVG in Markdown fences. Do not use external images, links, scripts, CSS imports, or remote assets. Make the portrait recognizable as Gary Busey using vector shapes only. Include face shape, hair, eyes, eyebrows, nose, mouth, teeth, and expressive features. Use a 1024 by 1024 viewBox. Use detailed SVG-native vector techniques: layered paths, gradients, masks, clipping paths, shadows, highlights, blur filters, opacity, and fine strokes. The portrait should be as recognizable and detailed as possible.

Stored Source

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024">
  <!-- Face shape -->
  <path d="M512 0C768.8 0 1024 255.2 1024 512S768.8 1024 512 1024 0 768.8 0 512 255.2 0 512 0" fill="#F5F5F5" />
  
  <!-- Hair -->
  <path d="M512 0C768.8 0 1024 255.2 1024 512S768.8 1024 512 1024 0 768.8 0 512 255.2 0 512 0" fill="#964B00" opacity="0.7" />
  <path d="M512 150C550 120 650 100 700 150" fill="none" stroke="#452B1F" stroke-width="20" />
  <path d="M512 150C450 120 350 100 250 150" fill="none" stroke="#452B1F" stroke-width="20" />
  
  <!-- Eyes -->
  <circle cx="420" cy="420" r="60" fill="#FFFFFF" />
  <circle cx="604" cy="420" r="60" fill="#FFFFFF" />
  <circle cx="420" cy="420" r="30" fill="#000000" />
  <circle cx="604" cy="420" r="30" fill="#000000" />
  <circle cx="420" cy="390" r="10" fill="#FFFFFF" />
  <circle cx="604" cy="390" r="10" fill="#FFFFFF" />
  
  <!-- Eyebrows -->
  <path d="M350 370C380 350 420 330 450 350" fill="none" stroke="#452B1F" stroke-width="15" />
  <path d="M574 370C604 350 650 330 680 350" fill="none" stroke="#452B1F" stroke-width="15" />
  
  <!-- Nose -->
  <path d="M512 500C520 480 540 460 550 480" fill="#FFC0CB" />
  <path d="M512 500C504 480 490 460 470 480" fill="#FFC0CB" />
  
  <!-- Mouth -->
  <path d="M450 550C500 520 550 520 600 550" fill="none" stroke="#FFC0CB" stroke-width="10" />
  <path d="M500 580C520 600 540 600 560 580" fill="none" stroke="#FFC0CB" stroke-width="5" />
  
  <!-- Teeth -->
  <rect x="520" y="570" width="20" height="10" fill="#FFFFFF" />
  <rect x="540" y="570" width="20" height="10" fill="#FFFFFF" />
  
  <!-- Expressive features -->
  <defs>
    <linearGradient id="shadow" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#000000" stop-opacity="0.5" />
      <stop offset="100%" stop-color="#000000" stop-opacity="0" />
    </linearGradient>
  </defs>
  <rect x="400" y="400" width="200" height="200" fill="url(#shadow)" opacity="0.5" rx="50" />
  <filter id="blur" x="-50%" y="-50%" width="200%" height="200%">
    <feGaussianBlur stdDeviation="5" />
  </filter>
  <circle cx="512" cy="512" r="100" fill="#FFFFFF" filter="url(#blur)" opacity="0.2" />
  
  <!-- Highlights -->
  <circle cx="420" cy="390" r="5" fill="#FFFFFF" />
  <circle cx="604" cy="390" r="5" fill="#FFFFFF" />
</svg>