gemma-4-e2b

2026-05-15T09-54-41Z_google_gemma-4-e2b

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 city_plan_svg_constraints 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="600" height="400" viewBox="0 0 600 400" xmlns="http://www.w3.org/2000/svg">
  <!-- Define a simple isometric grid background (optional, for context) -->
  <rect x="0" y="0" width="600" height="400" fill="#f0f8ff"/>

  <!-- Roads/City Blocks (Ground Plane) -->
  <rect x="10" y="350" width="580" height="50" fill="#a9a9a9"/>
  <rect x="10" y="280" width="580" height="50" fill="#a9a9a9"/>

  <!-- Building 1 (Isometric Style) -->
  <!-- Base structure (simulating depth via offset) -->
  <g id="building1" transform="translate(50, 250)">
    <!-- Front face (Base rectangle) -->
    <rect x="0" y="0" width="80" height="100" fill="#d2b48c" stroke="#654321" stroke-width="2"/>
    <!-- Side/Depth extrusion (to simulate 3D block) -->
    <rect x="80" y="0" width="80" height="100" fill="#b8860b" stroke="#654321" stroke-width="2"/>
  </g>

  <!-- Building 2 (Slightly further back) -->
  <g id="building2" transform="translate(200, 250)">
    <!-- Front face -->
    <rect x="0" y="0" width="70" height="120" fill="#8b4513" stroke="#654321" stroke-width="2"/>
    <!-- Side/Depth extrusion -->
    <rect x="70" y="0" width="70" height="120" fill="#a0522d" stroke="#654321" stroke-width="2"/>
  </g>

  <!-- Building 3 (Foreground, smaller) -->
  <g id="building3" transform="translate(50, 150)">
    <!-- Front face -->
    <rect x="0" y="0" width="60" height="80" fill="#4682b4" stroke="#1e90ff" stroke-width="2"/>
    <!-- Side/Depth extrusion -->
    <rect x="60" y="0" width="60" height="80" fill="#4169e1" stroke="#1e90ff" stroke-width="2"/>
  </g>

  <!-- Road detail (simulating perspective lines) -->
  <line x1="0" y1="350" x2="600" y2="350" stroke="#8b4513" stroke-width="5" opacity="0.7"/>
  <line x1="0" y1="280" x2="600" y2="280" stroke="#8b4513" stroke-width="5" opacity="0.7"/>

</svg>