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
- 采集于
- 2026年7月18日 11:54 · N=2
variant
live
slot 0 · P-q · sandboxed iframe

截图是 similarity 通道测量时的原始像素。运行 live 会在 sandboxed iframe 中重新执行原始输出;渲染结果取决于你的浏览器和字体,不保证与测量像素一致。
similarity 邻居
最近
mimo-v2.5-pro · go0.66claude-opus-4-6 @high · kiro0.63claude-opus-4-8 @high · CC0.63deepseek-v4-pro · go0.63gpt-5.6-luna @medium · kiro0.63最远
minimax-m2.5 · go0.39minimax-m2.1 · kiro0.41gpt-5.6-luna @medium · codex-oauth0.42gpt-5.6-luna @high · kiro0.42kimi-k3 · go0.45限于 session 2026-07-19--unified
similarity 衡量本 session 内的趋同程度 —— 不是质量。
Fidelity —— 卡片展示的数据对不对?
- namematch
- conditionmatch
- datematch
- max tempambiguousno-remaining-candidate
- min tempmatch展示值:16
- hourlyambiguouscoverage · 0 命中 · 0 不符 · 24 未展示
- request sidematch0 处违规
extractor fidelity-extractor-v1+Berlin-2026-07-15
源码 —— 原始模型输出,一字节未改
下载 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 —— 廉价的确定性描述量
| bytes 总计 | 7,349 | html / css / js | 350 / 2,966 / 4,033 |
|---|---|---|---|
| dom 节点 | 11 | dom 深度 | 5 |
| css 规则 | 38 | 含 js | 是 |
| brightness | 51.1 | contrast | 18.9 |
| colorfulness | 21.8 | 留白 | 80.8% |
该 slot 的 telemetry
| prompt tokens | 562 | completion tokens | 2,551 |
|---|---|---|---|
| total tokens | 3,113 | wall | 41.1 s |
| cost | — | request 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
}
}
}