qwen3-14b

2026-05-18T10-12-19Z_qwen_qwen3-14b

pass Visual sample result
3/3 Automated checks
1/1 SVG artifact

Verdict

visual sample
pass

1 artifact · 3/3 checks · pass

no failure labels
Prompt set v1_city_plan_svg.json
Run type local
Temperature 0
Top P 1
Missed tasks 0/1

SVG Artifacts

1 artifact · 3/3 checks · pass
city_plan_3d_buildings_svg 3/3 · v1_city_plan_svg.json open SVG
city_plan_3d_buildings_svg SVG output

Task Results

Compact view; open a row for prompt and raw answer
Task Category Score Failed Checks Failure Types Prompt / Answer
city_plan_3d_buildings_svg svg 3/3 none none
Open

Prompt

Generate a valid standalone SVG of a city plan with a 3D-style representation of buildings.

Rules:
- SVG only
- no Markdown
- no external images
- no JavaScript
- include roads or city blocks
- include multiple buildings
- make at least some buildings appear 3D or isometric
- use simple vector shapes

Model answer

<svg width="500" height="400" xmlns="http://www.w3.org/2000/svg">
  <rect width="100%" height="100%" fill="#87CEEB"/>
  <!-- Roads -->
  <rect x="50" y="100" width="400" height="20" fill="#333"/>
  <rect x="150" y="150" width="20" height="200" fill="#333"/>
  <rect x="250" y="150" width="20" height="200" fill="#333"/>
  <rect x="350" y="150" width="20" height="200" fill="#333"/>
  <!-- Buildings -->
  <!-- Isometric Building 1 -->
  <polygon points="100,200 130,160 160,200 130,240" fill="#FFA500"/>
  <polygon points="100,200 130,160 160,200 130,240" fill="#FFA500" transform="translate(0,-10)"/>
  <polygon points="100,200 130,160 160,200 130,240" fill="#FFA500" transform="translate(0,-20)"/>
  <!-- Isometric Building 2 -->
  <polygon points="180,250 210,210 240,250 210,290" fill="#FFD700"/>
  <polygon points="180,250 210,210 240,250 210,290" fill="#FFD700" transform="translate(0,-10)"/>
  <polygon points="180,250 210,210 240,250 210,290" fill="#FFD700" transform="translate(0,-20)"/>
  <!-- Regular Building -->
  <rect x="300" y="180" width="60" height="120" fill="#4682B4"/>
  <rect x="305" y="175" width="50" height="110" fill="#4682B4"/>
  <rect x="310" y="170" width="40" height="100" fill="#4682B4"/>
</svg>