mistral-small-3.2

2026-05-15T11-51-42Z_mistralai_mistral-small-3.2

review Visual sample result
2/3 Automated checks
1/1 SVG artifact

Verdict

visual sample
review

1 artifact · 2/3 checks · review

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

SVG Artifacts

1 artifact · 2/3 checks · review
city_plan_3d_buildings_svg 2/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 2/3 no_markdown none
Inspect

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="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
    <!-- Roads -->
    <rect x="50" y="50" width="300" height="10" fill="#888"/>
    <rect x="50" y="150" width="300" height="10" fill="#888"/>
    <rect x="50" y="250" width="300" height="10" fill="#888"/>
    <rect x="50" y="350" width="300" height="10" fill="#888"/>
    <rect x="50" y="50" width="10" height="300" fill="#888"/>
    <rect x="150" y="50" width="10" height="300" fill="#888"/>
    <rect x="250" y="50" width="10" height="300" fill="#888"/>
    <rect x="350" y="50" width="10" height="300" fill="#888"/>

    <!-- Buildings -->
    <!-- Building 1 -->
    <polygon points="60,40 140,40 140,90 60,90" fill="#ff9999"/>
    <polygon points="70,50 130,50 130,80 70,80" fill="#ff6666"/>

    <!-- Building 2 -->
    <polygon points="160,40 240,40 240,90 160,90" fill="#99ff99"/>
    <polygon points="170,50 230,50 230,80 170,80" fill="#66ff66"/>

    <!-- Building 3 -->
    <polygon points="260,40 340,40 340,90 260,90" fill="#9999ff"/>
    <polygon points="270,50 330,50 330,80 270,80" fill="#6666ff"/>

    <!-- Building 4 -->
    <polygon points="60,160 140,160 140,210 60,210" fill="#ffff99"/>
    <polygon points="70,170 130,170 130,200 70,200" fill="#ffcc66"/>

    <!-- Building 5 -->
    <polygon points="160,160 240,160 240,210 160,210" fill="#ff99ff"/>
    <polygon points="170,170 230,170 230,200 170,200" fill="#cc66ff"/>

    <!-- Building 6 -->
    <polygon points="260,160 340,160 340,210 260,210" fill="#99ffff"/>
    <polygon points="270,170 330,170 330,200 270,200" fill="#66ccff"/>

    <!-- Building 7 -->
    <polygon points="60,260 140,260 140,310 60,310" fill="#ff9999"/>
    <polygon points="70,270 130,270 130,300 70,300" fill="#ff6666"/>

    <!-- Building 8 -->
    <polygon points="160,260 240,260 240,310 160,310" fill="#99ff99"/>
    <polygon points="170,270 230,270 230,300 170,300" fill="#66ff66"/>

    <!-- Building 9 -->
    <polygon points="260,260 340,260 340,310 260,310" fill="#9999ff"/>
    <polygon points="270,270 330,270 330,300 270,300" fill="#6666ff"/>
</svg>