BuseyBench SVG Test
DeepSeek V3
Generated by DeepSeek on Jul 1, 2026 using prompt svg-v1-no-web.
- Model release
- Dec 2024
- Cost
- $0.000775
- Tokens used
- 957 tokens134 prompt / 823 output
Run Telemetry
Jul 1, 2026
26 seconds
$0.000775
957 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" width="1024" height="1024">
<defs>
<linearGradient id="skinGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#f0c8a0;stop-opacity:1" />
<stop offset="100%" style="stop-color:#e0b080;stop-opacity:1" />
</linearGradient>
<linearGradient id="hairGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#4a3a2a;stop-opacity:1" />
<stop offset="100%" style="stop-color:#2a1a0a;stop-opacity:1" />
</linearGradient>
<filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur in="SourceAlpha" stdDeviation="5" />
<feOffset dx="5" dy="5" />
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
<rect width="1024" height="1024" fill="#f0f0f0" />
<g transform="translate(512, 512)">
<!-- Face Shape -->
<ellipse cx="0" cy="0" rx="300" ry="400" fill="url(#skinGradient)" filter="url(#shadow)" />
<!-- Hair -->
<path d="M-300,-400 Q-200,-450 0,-450 Q200,-450 300,-400 L300,-300 Q200,-350 0,-350 Q-200,-350 -300,-300 Z" fill="url(#hairGradient)" />
<!-- Eyes -->
<ellipse cx="-100" cy="-100" rx="50" ry="30" fill="#ffffff" />
<ellipse cx="100" cy="-100" rx="50" ry="30" fill="#ffffff" />
<circle cx="-100" cy="-100" r="20" fill="#000000" />
<circle cx="100" cy="-100" r="20" fill="#000000" />
<!-- Eyebrows -->
<path d="M-150,-150 Q-100,-200 -50,-150" stroke="#4a3a2a" stroke-width="10" fill="none" />
<path d="M50,-150 Q100,-200 150,-150" stroke="#4a3a2a" stroke-width="10" fill="none" />
<!-- Nose -->
<path d="M-50,0 Q0,-50 50,0" stroke="#d0a080" stroke-width="10" fill="none" />
<!-- Mouth -->
<path d="M-150,150 Q0,250 150,150" stroke="#d08080" stroke-width="10" fill="none" />
<!-- Teeth -->
<rect x="-100" y="150" width="200" height="20" fill="#ffffff" />
<!-- Expressive Features -->
<path d="M-200,250 Q-100,300 0,250" stroke="#d08080" stroke-width="10" fill="none" />
<path d="M0,250 Q100,300 200,250" stroke="#d08080" stroke-width="10" fill="none" />
</g>
</svg>