ministral-3-3b

2026-05-15T09-54-58Z_mistralai_ministral-3-3b

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 xmlns="http://www.w3.org/2000/svg" viewBox="-15 -10 60 40">
    <!-- Background grid -->
    <rect x="-15" y="-10" width="60" height="40" fill="#f0f0f0"/>

    <!-- Roads and city blocks -->
    <path d="M-15,-10 L-15,30 L20,30 L20,-10 Z" fill="#ccc"/>
    <path d="M-15,-10 L45,-10 L45,30 L-15,30 Z" fill="#ccc"/>

    <!-- Buildings (2D and 3D) -->
    <!-- Simple rectangular buildings -->
    <rect x="-10" y="-5" width="8" height="12" fill="#a0d8f6"/>
    <rect x="-5" y="-5" width="8" height="12" fill="#c4e3f7"/>

    <!-- Isometric 3D building -->
    <path d="M-10,-5 L-5,5 L5,5 Z" fill="#b8d9f6"/>
    <rect x="-10" y="0" width="20" height="4" fill="#a0c8e7"/>

    <!-- Another 3D building -->
    <path d="M-10,-10 L-5,0 L5,0 Z" fill="#d0e6f9"/>
    <rect x="-10" y="-2" width="20" height="4" fill="#c8dcf7"/>

    <!-- Tall building -->
    <path d="M-10,-10 L-10,35 L-5,35 Z" fill="#90b6e0"/>
    <rect x="-10" y="-2" width="4" height="4" fill="#80a7d0"/>

    <!-- Rooftop details -->
    <path d="M-10,-5 L-5,-5 L-3,-3 Z" fill="#f0e6c9"/>
</svg>