mimo-v2.5-free · api

api
config
mimo-v2.5-free--zen-free--dev
batch
2026-07-19--unified
transport
opencode-zen-free-tier
protocol
api · plan
served model
mimo-v2.5-free
captured
Jul 18, 2026, 11:54 AM · N=2
variant
live
slot 0 · P-q · sandboxed iframe
mimo-v2.5-free · api P-q slot 0 screenshot

The screenshot is the exact frozen pixels the similarity channels measured. Run live re-executes the raw output in a sandboxed iframe; its rendering depends on your browser and fonts and is not guaranteed to match the measured pixels.

similarity neighbors

within session 2026-07-19--unified

similarity measures convergence within this session — not quality.

Fidelity — does the card show the right data?

  • namematch
  • conditionmatch
  • datematch
  • max tempambiguousno-remaining-candidate
  • min tempmatchshown: 16
  • hourlyambiguouscoverage · 0 match · 0 mismatch · 24 not shown
  • request sidematch0 violation(s)

extractor fidelity-extractor-v1+Berlin-2026-07-15

Source — raw model output, one byte unchanged

download card.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather Card</title>
<style>
  *{margin:0;padding:0;box-sizing:border-box}
  body{background:linear-gradient(135deg,#0f0c29,#302b63,#24243e);min-height:100vh;display:flex;align-items:center;justify-content:center;font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;padding:20px}
  .weather-card{background:rgba(255,255,255,0.08);backdrop-filter:blur(20px);border:1px solid rgba(255,255,255,0.12);border-radius:24px;padding:40px 36px 36px;max-width:900px;width:100%;color:#fff;box-shadow:0 20px 60px rgba(0,0,0,0.3)}
  .header{text-align:center;margin-bottom:32px}
  .location{font-size:28px;font-weight:600;letter-spacing:0.5px;color:#fff}
  .date{font-size:15px;color:rgba(255,255,255,0.6);margin-top:6px}
  .main-info{display:flex;align-items:center;justify-content:center;gap:48px;margin-bottom:32px;flex-wrap:wrap}
  .weather-icon-area{text-align:center}
  .weather-icon{font-size:80px;line-height:1}
  .condition-text{font-size:16px;color:rgba(255,255,255,0.75);margin-top:4px}
  .temps{text-align:center}
  .temp-high{font-size:52px;font-weight:700;color:#ff9a56}
  .temp-high span{font-size:24px;font-weight:400;vertical-align:super;color:#ff9a56}
  .temp-low{font-size:20px;color:rgba(255,255,255,0.5);margin-top:2px}
  .temp-low span{font-size:14px;font-weight:400;vertical-align:super}
  .divider{height:1px;background:rgba(255,255,255,0.1);margin-bottom:28px}
  .hourly-label{font-size:13px;text-transform:uppercase;letter-spacing:1.5px;color:rgba(255,255,255,0.4);margin-bottom:16px;text-align:center}
  .hourly-scroll{display:flex;gap:12px;overflow-x:auto;padding-bottom:8px;scrollbar-width:thin;scrollbar-color:rgba(255,255,255,0.2) transparent}
  .hourly-scroll::-webkit-scrollbar{height:6px}
  .hourly-scroll::-webkit-scrollbar-track{background:transparent}
  .hourly-scroll::-webkit-scrollbar-thumb{background:rgba(255,255,255,0.2);border-radius:3px}
  .hour-item{flex:0 0 auto;text-align:center;padding:12px 14px;border-radius:14px;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.07);min-width:64px;transition:transform .2s}
  .hour-item:hover{transform:translateY(-3px);background:rgba(255,255,255,0.1)}
  .hour-time{font-size:12px;color:rgba(255,255,255,0.5);margin-bottom:8px}
  .hour-temp{font-size:16px;font-weight:600;color:#fff}
  .hour-dot{width:6px;height:6px;border-radius:50%;margin:8px auto 0}
  .loading{text-align:center;padding:60px 20px;font-size:18px;color:rgba(255,255,255,0.7)}
  .loading .spinner{width:40px;height:40px;border:3px solid rgba(255,255,255,0.15);border-top-color:#fff;border-radius:50%;animation:spin .8s linear infinite;margin:0 auto 16px}
  @keyframes spin{to{transform:rotate(360deg)}}
  .error{text-align:center;padding:60px 20px;color:rgba(255,255,255,0.7)}
  .error .error-icon{font-size:48px;margin-bottom:12px}
  .error h2{font-size:20px;color:#fff;margin-bottom:8px}
  @media(max-width:600px){.weather-card{padding:28px 20px 24px}.main-info{gap:24px}.temp-high{font-size:42px}.weather-icon{font-size:64px}}
</style>
</head>
<body>
<div class="weather-card" id="card">
  <div class="loading"><div class="spinner"></div>Loading weather data…</div>
</div>
<script>
(function(){
  const p=new URLSearchParams(window.location.search);
  const lat=p.get('lat')||'52.52';
  const lon=p.get('lon')||'13.405';
  const name=p.get('name')||'Berlin';
  let d=p.get('date');
  if(!d){
    const now=new Date();
    d=now.getUTCFullYear()+'-'+String(now.getUTCMonth()+1).padStart(2,'0')+'-'+String(now.getUTCDate()).padStart(2,'0');
  }
  const now=new Date(d+'T00:00:00Z');
  const today=new Date();today.setUTCHours(0,0,0,0);
  const diffDays=Math.round((now-today)/(864e5));
  const isFuture=diffDays>0;
  const isPast=diffDays<0;
  let apiPath;
  if(isPast){apiPath='/api/om/archive'}
  else{apiPath='/api/om/forecast'}
  const params=new URLSearchParams({
    latitude:lat,longitude:lon,
    daily:'temperature_2m_max,temperature_2m_min,weather_code',
    hourly:'temperature_2m',
    timezone:'UTC',
    temperature_unit:'celsius',
    start_date:d,end_date:d
  });
  function formatDate(s){
    const dt=new Date(s+'T00:00:00Z');
    const opts={weekday:'long',year:'numeric',month:'long',day:'numeric',timeZone:'UTC'};
    return dt.toLocaleDateString('en-US',opts);
  }
  function wmoDesc(code){
    const m={0:'Clear Sky',1:'Mainly Clear',2:'Partly Cloudy',3:'Overcast',
      45:'Foggy',48:'Depositing Rime Fog',
      51:'Light Drizzle',53:'Moderate Drizzle',55:'Dense Drizzle',
      56:'Freezing Drizzle',57:'Dense Freezing Drizzle',
      61:'Slight Rain',63:'Moderate Rain',65:'Heavy Rain',
      66:'Freezing Rain',67:'Heavy Freezing Rain',
      71:'Slight Snow',73:'Moderate Snow',75:'Heavy Snow',
      77:'Snow Grains',
      80:'Slight Rain Showers',81:'Moderate Rain Showers',82:'Violent Rain Showers',
      85:'Slight Snow Showers',86:'Heavy Snow Showers',
      95:'Thunderstorm',96:'Thunderstorm w/ Hail',99:'Severe Thunderstorm w/ Hail'};
    return m[code]||('Code '+code);
  }
  function wmoIcon(code){
    if(code<=1)return '☀️';if(code===2)return '⛅';if(code===3)return '☁️';
    if(code<=48)return '🌫️';if(code<=57)return '🌦️';if(code<=67)return '🌧️';
    if(code<=77)return '❄️';if(code<=82)return '🌧️';if(code<=86)return '🌨️';
    return '⛈️';
  }
  function tempColor(t){
    if(t>=30)return '#ff5e5e';
    if(t>=20)return '#ff9a56';
    if(t>=10)return '#f6d365';
    if(t>=0)return '#7ec8e3';
    return '#7b9fff';
  }
  fetch(apiPath+'?'+params.toString())
    .then(r=>{if(!r.ok)throw new Error(r.status);return r.json()})
    .then(data=>{
      const daily=data.daily;
      const maxT=daily.temperature_2m_max[0];
      const minT=daily.temperature_2m_min[0];
      const wc=daily.weather_code[0];
      const hourly=data.hourly.temperature_2m;
      const times=data.hourly.time;
      let hourlyHtml='';
      for(let i=0;i<hourly.length&&i<24;i++){
        const hr=new Date(times[i]);
        const h=hr.getUTCHours();
        const hStr=String(h).padStart(2,'0')+':00';
        const t=hourly[i];
        const c=tempColor(t);
        hourlyHtml+='<div class="hour-item"><div class="hour-time">'+hStr+'</div><div class="hour-temp">'+Math.round(t)+'°</div><div class="hour-dot" style="background:'+c+'"></div></div>';
      }
      document.getElementById('card').innerHTML=
        '<div class="header"><div class="location">'+name+'</div><div class="date">'+formatDate(d)+'</div></div>'+
        '<div class="main-info"><div class="weather-icon-area"><div class="weather-icon">'+wmoIcon(wc)+'</div><div class="condition-text">'+wmoDesc(wc)+'</div></div><div class="temps"><div class="temp-high">'+Math.round(maxT)+'<span>°C</span></div><div class="temp-low">Low: '+Math.round(minT)+'°C</div></div></div>'+
        '<div class="divider"></div>'+
        '<div class="hourly-label">Hourly Forecast</div>'+
        '<div class="hourly-scroll">'+hourlyHtml+'</div>';
    })
    .catch(()=>{
      document.getElementById('card').innerHTML='<div class="error"><div class="error-icon">⚠️</div><h2>Unable to load weather data</h2><p>Please try again later or check the location parameters.</p></div>';
    });
})();
</script>
</body>
</html>

L1 — cheap deterministic descriptors

bytes total7,349html / css / js350 / 2,966 / 4,033
dom nodes11dom depth5
css rules38js presentyes
brightness51.1contrast18.9
colorfulness21.8whitespace80.8%

This slot's telemetry

prompt tokens562completion tokens2,551
total tokens3,113wall41.1 s
costrequest id
config.json549 B
{
  "N": 2,
  "auth": {
    "credential_ref": "WCB_ZEN_KEY",
    "method": "api-key"
  },
  "billing": "plan",
  "config_id": "mimo-v2.5-free--zen-free--dev",
  "effort": null,
  "family": "mimo",
  "m": {
    "min": 2,
    "q": 2
  },
  "model_id": "mimo-v2.5-free",
  "protocol": "api",
  "served_model": "mimo-v2.5-free",
  "telemetry": {
    "completion_tokens": 35128,
    "cost_usd": null,
    "prompt_tokens": 2232,
    "total_tokens": 37360,
    "wall_ms": 535452
  },
  "transport": "opencode-zen-free-tier",
  "vendor_sanction_ref": null
}
send-log2.5 KB
{
  "N": 2,
  "batch_id": "2026-07-18--dev-zen-free",
  "config_id": "mimo-v2.5-free--zen-free--dev",
  "positions": [
    {
      "attempts": [
        {
          "attempt_index": 0,
          "backoff_ms": null,
          "charged": true,
          "ended_at": "2026-07-18T00:56:17.764059+00:00",
          "http_status": 200,
          "outcome": "valid",
          "reached_model": true,
          "reason": "ok",
          "request_id": null,
          "started_at": "2026-07-18T00:55:34.211649+00:00"
        }
      ],
      "block_index": 0,
      "model_reaching_attempt_index": 0,
      "slot_index": 0,
      "terminal_state": "valid",
      "variant": "P-min"
    },
    {
      "attempts": [
        {
          "attempt_index": 0,
          "backoff_ms": null,
          "charged": true,
          "ended_at": "2026-07-18T00:57:02.490116+00:00",
          "http_status": 200,
          "outcome": "valid",
          "reached_model": true,
          "reason": "ok",
          "request_id": null,
          "started_at": "2026-07-18T00:56:21.402512+00:00"
        }
      ],
      "block_index": 0,
      "model_reaching_attempt_index": 0,
      "slot_index": 0,
      "terminal_state": "valid",
      "variant": "P-q"
    },
    {
      "attempts": [
        {
          "attempt_index": 0,
          "backoff_ms": null,
          "charged": true,
          "ended_at": "2026-07-18T01:03:40.901012+00:00",
          "http_status": 200,
          "outcome": "valid",
          "reached_model": true,
          "reason": "ok",
          "request_id": null,
          "started_at": "2026-07-18T00:57:06.304815+00:00"
        }
      ],
      "block_index": 1,
      "model_reaching_attempt_index": 0,
      "slot_index": 1,
      "terminal_state": "valid",
      "variant": "P-q"
    },
    {
      "attempts": [
        {
          "attempt_index": 0,
          "backoff_ms": null,
          "charged": true,
          "ended_at": "2026-07-18T01:05:24.409588+00:00",
          "http_status": 200,
          "outcome": "valid",
          "reached_model": true,
          "reason": "ok",
          "request_id": null,
          "started_at": "2026-07-18T01:04:28.129527+00:00"
        }
      ],
      "block_index": 1,
      "model_reaching_attempt_index": 0,
      "slot_index": 1,
      "terminal_state": "valid",
      "variant": "P-min"
    }
  ],
  "retry_policy": {
    "max_unreachable_retries": 5,
    "rate_limit_backoff": {
      "max_attempts": 4,
      "max_total_ms": 60000
    }
  }
}