claude-opus-4-6 @ low · kiro
kirolow
- config
- claude-opus-4-6-eff-low--cli--kiro--dev
- batch
- 2026-07-19--unified
- transport
- kiro-cli-isolated-home-github-social
- protocol
- cli · plan
- served model
- claude-opus-4.6
- 采集于
- 2026年7月18日 11:54 · N=2
variant
live
slot 0 · P-q · sandboxed iframe

截图是 similarity 通道测量时的原始像素。运行 live 会在 sandboxed iframe 中重新执行原始输出;渲染结果取决于你的浏览器和字体,不保证与测量像素一致。
similarity 邻居
最近
claude-opus-4-6 @max · kiro0.88claude-opus-4-6 @medium · kiro0.78claude-opus-4-6 @high · kiro0.73glm-5.1 · opencode0.73deepseek-v4-flash · opencode0.72最远
gpt-5.6-sol @max · codex-oauth0.38claude-fable-5 @low · CC0.38qwen3.5-plus · go0.39kimi-k2.6 · go0.41claude-haiku-4-5 @max · CC0.41限于 session 2026-07-19--unified
similarity 衡量本 session 内的趋同程度 —— 不是质量。
Fidelity —— 卡片展示的数据对不对?
- namematch
- conditionmatch
- datematch
- max tempambiguous展示值:17max-equals-min
- min tempambiguous展示值:17max-equals-min
- 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=1280">
<title>Weather Card</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
}
.card {
background: rgba(255,255,255,0.08);
backdrop-filter: blur(20px);
border: 1px solid rgba(255,255,255,0.15);
border-radius: 24px;
padding: 48px;
width: 720px;
box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 32px;
}
.location { font-size: 32px; font-weight: 700; letter-spacing: -0.5px; }
.date { font-size: 16px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.condition {
font-size: 18px;
background: rgba(255,255,255,0.1);
padding: 8px 16px;
border-radius: 20px;
white-space: nowrap;
}
.temps {
display: flex;
gap: 40px;
margin-bottom: 40px;
}
.temp-block { text-align: center; }
.temp-label { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.temp-value { font-size: 48px; font-weight: 200; }
.temp-value span { font-size: 24px; vertical-align: super; }
.hourly-title { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.hourly {
display: flex;
gap: 8px;
overflow-x: auto;
padding-bottom: 8px;
}
.hour {
display: flex;
flex-direction: column;
align-items: center;
min-width: 44px;
padding: 10px 6px;
border-radius: 12px;
background: rgba(255,255,255,0.05);
font-size: 12px;
}
.hour .h-time { color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.hour .h-temp { font-weight: 600; font-size: 14px; }
.error {
text-align: center;
font-size: 18px;
color: #ff6b6b;
padding: 40px;
}
.loading { text-align: center; color: rgba(255,255,255,0.5); padding: 40px; }
</style>
</head>
<body>
<div class="card" id="card"><div class="loading">Loading weather data…</div></div>
<script>
(function(){
const params = new URLSearchParams(window.location.search);
const lat = params.get('lat') || '52.52';
const lon = params.get('lon') || '13.405';
const name = params.get('name') || 'Berlin';
const today = new Date().toISOString().slice(0,10);
const date = params.get('date') || today;
const isPast = date < today;
const base = isPast ? '/api/om/archive' : '/api/om/forecast';
const url = `${base}?latitude=${lat}&longitude=${lon}&daily=temperature_2m_max,temperature_2m_min,weather_code&hourly=temperature_2m&timezone=UTC&temperature_unit=celsius&start_date=${date}&end_date=${date}`;
const WMO = {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 showers',81:'Moderate showers',82:'Violent showers',85:'Slight snow showers',86:'Heavy snow showers',95:'Thunderstorm',96:'Thunderstorm with hail',99:'Severe thunderstorm'};
fetch(url).then(r=>{if(!r.ok)throw new Error(r.status);return r.json()}).then(data=>{
const tmax = data.daily.temperature_2m_max[0];
const tmin = data.daily.temperature_2m_min[0];
const code = data.daily.weather_code[0];
const hourly = data.hourly.temperature_2m;
const condition = WMO[code] || `Code ${code}`;
const dateStr = new Date(date+'T00:00:00Z').toLocaleDateString('en-US',{weekday:'long',year:'numeric',month:'long',day:'numeric',timeZone:'UTC'});
let hourlyHTML = '';
for(let i=0;i<24;i++){
hourlyHTML += `<div class="hour"><span class="h-time">${String(i).padStart(2,'0')}:00</span><span class="h-temp">${Math.round(hourly[i])}°</span></div>`;
}
document.getElementById('card').innerHTML = `
<div class="header">
<div><div class="location">${name}</div><div class="date">${dateStr}</div></div>
<div class="condition">${condition}</div>
</div>
<div class="temps">
<div class="temp-block"><div class="temp-label">High</div><div class="temp-value">${Math.round(tmax)}<span>°C</span></div></div>
<div class="temp-block"><div class="temp-label">Low</div><div class="temp-value">${Math.round(tmin)}<span>°C</span></div></div>
</div>
<div class="hourly-title">Hourly Temperature</div>
<div class="hourly">${hourlyHTML}</div>
`;
}).catch(()=>{
document.getElementById('card').innerHTML = '<div class="error">Unable to load weather data. Please try again later.</div>';
});
})();
</script>
</body>
</html>L1 —— 廉价的确定性描述量
| bytes 总计 | 4,981 | html / css / js | 284 / 1,989 / 2,708 |
|---|---|---|---|
| dom 节点 | 10 | dom 深度 | 4 |
| css 规则 | 19 | 含 js | 是 |
| brightness | 40.4 | contrast | 13.8 |
| colorfulness | 23.4 | 留白 | 56.0% |
该 slot 的 telemetry
| prompt tokens | 0 | completion tokens | 0 |
|---|---|---|---|
| total tokens | 0 | wall | 33 s |
| cost | — | request id | — |
config.json577 B
{
"N": 2,
"auth": {
"credential_ref": "WCB_NONE",
"method": "oauth-login"
},
"billing": "plan",
"config_id": "claude-opus-4-6-eff-low--cli--kiro--dev",
"effort": "low",
"family": "claude",
"m": {
"min": 2,
"q": 2
},
"model_id": "claude-opus-4-6",
"protocol": "cli",
"served_model": "claude-opus-4.6",
"telemetry": {
"completion_tokens": null,
"cost_usd": null,
"prompt_tokens": null,
"total_tokens": null,
"wall_ms": 132251
},
"transport": "kiro-cli-isolated-home-github-social",
"vendor_sanction_ref": null
}send-log2.5 KB
{
"N": 2,
"batch_id": "2026-07-18--kiro-cli",
"config_id": "claude-opus-4-6-eff-low--cli--kiro--dev",
"positions": [
{
"attempts": [
{
"attempt_index": 0,
"backoff_ms": null,
"charged": true,
"ended_at": "2026-07-18T14:44:40.671187+00:00",
"http_status": null,
"outcome": "valid",
"reached_model": true,
"reason": "ok",
"request_id": null,
"started_at": "2026-07-18T14:44:07.663718+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-18T14:45:18.138554+00:00",
"http_status": null,
"outcome": "valid",
"reached_model": true,
"reason": "ok",
"request_id": null,
"started_at": "2026-07-18T14:44:44.356948+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-18T14:45:51.661241+00:00",
"http_status": null,
"outcome": "valid",
"reached_model": true,
"reason": "ok",
"request_id": null,
"started_at": "2026-07-18T14:45:21.899001+00:00"
}
],
"block_index": 1,
"model_reaching_attempt_index": 0,
"slot_index": 1,
"terminal_state": "valid",
"variant": "P-min"
},
{
"attempts": [
{
"attempt_index": 0,
"backoff_ms": null,
"charged": true,
"ended_at": "2026-07-18T14:46:31.139082+00:00",
"http_status": null,
"outcome": "valid",
"reached_model": true,
"reason": "ok",
"request_id": null,
"started_at": "2026-07-18T14:45:55.296890+00:00"
}
],
"block_index": 1,
"model_reaching_attempt_index": 0,
"slot_index": 1,
"terminal_state": "valid",
"variant": "P-q"
}
],
"retry_policy": {
"max_unreachable_retries": 5,
"rate_limit_backoff": {
"max_attempts": 4,
"max_total_ms": 60000
}
}
}