Chrome Gemini Nano

2026-05-19T18-27-44Z_chrome_gemini-nano

browser run: local Chrome Built-in AI runtime, shown separately from LM Studio rows.

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 browser
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" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="buildingGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#ADD8E6;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#87CEEB;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Roads/City Blocks -->
  <rect x="50" y="50" width="500" height="300" fill="#D3D3D3" />
  <rect x="150" y="150" width="100" height="100" fill="#D3D3D3" />
  <rect x="250" y="50" width="100" height="100" fill="#D3D3D3" />

  <!-- Building 1 (Isometric) -->
  <rect x="100" y="70" width="100" height="150" fill="url(#buildingGradient)" stroke="#000" stroke-width="2"/>
  <rect x="110" y="70" width="90" height="130" fill="#87CEEB" stroke="#000" stroke-width="1"/>
  <rect x="110" y="100" width="90" height="30" fill="#000" stroke="#000" stroke-width="1"/>

  <!-- Building 2 (Simple Box) -->
  <rect x="250" y="100" width="100" height="100" fill="url(#buildingGradient)" stroke="#000" stroke-width="2"/>

  <!-- Building 3 (Taller Building) -->
  <rect x="400" y="70" width="80" height="200" fill="url(#buildingGradient)" stroke="#000" stroke-width="2"/>
    <rect x="410" y="70" width="70" height="180" fill="#87CEEB" stroke="#000" stroke-width="1"/>

   <!-- Building 4 (Smaller Building) -->
  <rect x="500" y="100" width="60" height="80" fill="url(#buildingGradient)" stroke="#000" stroke-width="2"/>

</svg>