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

截图是 similarity 通道测量时的原始像素。运行 live 会在 sandboxed iframe 中重新执行原始输出;渲染结果取决于你的浏览器和字体,不保证与测量像素一致。
similarity 邻居本 session 没有 similarity 数据 —— 这个 batch 没有计算 pairs。
Fidelity —— 卡片展示的数据对不对?
- namematch
- conditionmatch
- datematch
- max tempmatch展示值:25
- min tempmatch展示值:16
- hourlymatchcoverage 24/24 · 24 命中 · 0 不符 · 0 未展示
- 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, Helvetica, Arial, sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 40px;
}
.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: 48px;
width: 720px;
color: #fff;
box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.card-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 36px;
}
.location {
font-size: 28px;
font-weight: 600;
letter-spacing: -0.5px;
}
.date {
font-size: 15px;
color: rgba(255, 255, 255, 0.55);
margin-top: 6px;
font-weight: 400;
}
.weather-icon {
font-size: 56px;
line-height: 1;
}
.main-temp {
display: flex;
align-items: center;
gap: 32px;
margin-bottom: 12px;
}
.condition {
font-size: 18px;
color: rgba(255, 255, 255, 0.7);
font-weight: 400;
margin-bottom: 32px;
}
.temp-range {
display: flex;
gap: 24px;
}
.temp-range .hi, .temp-range .lo {
font-size: 42px;
font-weight: 300;
letter-spacing: -1px;
}
.temp-range .hi {
color: #fff;
}
.temp-range .lo {
color: rgba(255, 255, 255, 0.45);
}
.temp-label {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
color: rgba(255, 255, 255, 0.4);
margin-bottom: 4px;
}
.divider {
height: 1px;
background: rgba(255, 255, 255, 0.1);
margin: 32px 0;
}
.hourly-title {
font-size: 13px;
text-transform: uppercase;
letter-spacing: 1.2px;
color: rgba(255, 255, 255, 0.4);
margin-bottom: 20px;
font-weight: 500;
}
.hourly-container {
display: flex;
gap: 0;
overflow-x: auto;
padding-bottom: 8px;
}
.hourly-container::-webkit-scrollbar {
height: 4px;
}
.hourly-container::-webkit-scrollbar-track {
background: rgba(255,255,255,0.05);
border-radius: 2px;
}
.hourly-container::-webkit-scrollbar-thumb {
background: rgba(255,255,255,0.2);
border-radius: 2px;
}
.hour-item {
display: flex;
flex-direction: column;
align-items: center;
min-width: 52px;
padding: 12px 6px;
border-radius: 12px;
transition: background 0.2s;
}
.hour-item:hover {
background: rgba(255, 255, 255, 0.06);
}
.hour-time {
font-size: 11px;
color: rgba(255, 255, 255, 0.4);
margin-bottom: 10px;
font-weight: 500;
}
.hour-temp {
font-size: 15px;
font-weight: 500;
color: rgba(255, 255, 255, 0.9);
}
.hour-bar-wrapper {
width: 4px;
height: 48px;
background: rgba(255, 255, 255, 0.06);
border-radius: 2px;
margin: 8px 0;
display: flex;
align-items: flex-end;
}
.hour-bar {
width: 100%;
border-radius: 2px;
background: linear-gradient(to top, #4facfe, #00f2fe);
transition: height 0.3s;
}
.error-msg {
text-align: center;
color: rgba(255, 255, 255, 0.7);
font-size: 16px;
padding: 60px 20px;
}
.error-msg .icon {
font-size: 48px;
margin-bottom: 16px;
}
</style>
</head>
<body>
<div class="card" id="card">
<div class="error-msg" id="loading">Loading…</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 + '?' + 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: date,
end_date: date
}).toString();
const WMO = {
0: ['Clear sky', '☀️'],
1: ['Mainly clear', '🌤️'],
2: ['Partly cloudy', '⛅'],
3: ['Overcast', '☁️'],
45: ['Fog', '🌫️'],
48: ['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', '⛈️']
};
function formatDate(d) {
const dt = new Date(d + 'T00:00:00Z');
return dt.toLocaleDateString('en-US', { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric', timeZone: 'UTC' });
}
fetch(url)
.then(function(r) { if (!r.ok) throw new Error(r.status); return r.json(); })
.then(function(data) {
const daily = data.daily;
const hourly = data.hourly;
if (!daily || !hourly) throw new Error('Invalid data');
const tMax = daily.temperature_2m_max[0];
const tMin = daily.temperature_2m_min[0];
const code = daily.weather_code[0];
const wmo = WMO[code] || ['Unknown', '❓'];
const temps = hourly.temperature_2m;
const minT = Math.min(...temps);
const maxT = Math.max(...temps);
const range = maxT - minT || 1;
var hoursHtml = '';
for (var i = 0; i < 24; i++) {
var t = temps[i];
var pct = ((t - minT) / range) * 100;
pct = Math.max(pct, 8);
hoursHtml += '<div class="hour-item">' +
'<span class="hour-time">' + String(i).padStart(2, '0') + ':00</span>' +
'<span class="hour-temp">' + Math.round(t) + '°</span>' +
'<div class="hour-bar-wrapper"><div class="hour-bar" style="height:' + pct + '%"></div></div>' +
'</div>';
}
document.getElementById('card').innerHTML =
'<div class="card-header">' +
'<div><div class="location">' + escHtml(name) + '</div>' +
'<div class="date">' + formatDate(date) + '</div></div>' +
'<div class="weather-icon">' + wmo[1] + '</div>' +
'</div>' +
'<div class="main-temp"><div class="temp-range">' +
'<div><div class="temp-label">High</div><div class="hi">' + Math.round(tMax) + '°C</div></div>' +
'<div><div class="temp-label">Low</div><div class="lo">' + Math.round(tMin) + '°C</div></div>' +
'</div></div>' +
'<div class="condition">' + wmo[0] + '</div>' +
'<div class="divider"></div>' +
'<div class="hourly-title">Hourly Temperature</div>' +
'<div class="hourly-container">' + hoursHtml + '</div>';
})
.catch(function() {
document.getElementById('card').innerHTML =
'<div class="error-msg"><div class="icon">⚠️</div>Unable to load weather data.</div>';
});
function escHtml(s) {
var d = document.createElement('div');
d.textContent = s;
return d.innerHTML;
}
})();
</script>
</body>
</html>L1 —— 廉价的确定性描述量
| bytes 总计 | 7,673 | html / css / js | 290 / 3,141 / 4,242 |
|---|---|---|---|
| dom 节点 | 10 | dom 深度 | 4 |
| css 规则 | 28 | 含 js | 是 |
| brightness | 41.9 | contrast | 13.9 |
| colorfulness | 24.0 | 留白 | 62.3% |
该 slot 的 telemetry
| prompt tokens | 4 | completion tokens | 3,299 |
|---|---|---|---|
| total tokens | 3,303 | wall | 51.9 s |
| cost | — | request id | — |
config.json583 B
{
"N": 2,
"auth": {
"credential_ref": "WCB_NONE",
"method": "oauth-login"
},
"billing": "plan",
"config_id": "claude-opus-4-6-eff-high--cli--cursor-xl--dev",
"effort": "high",
"family": "claude",
"m": {
"min": 2,
"q": 2
},
"model_id": "claude-opus-4-6",
"protocol": "cli",
"served_model": "claude-4.6-opus-high",
"telemetry": {
"completion_tokens": 11951,
"cost_usd": null,
"prompt_tokens": 16,
"total_tokens": 11967,
"wall_ms": 198790
},
"transport": "cursor-agent-cli-isolated-home",
"vendor_sanction_ref": null
}send-log2.5 KB
{
"N": 2,
"batch_id": "2026-08-13--cursor-xl-s0",
"config_id": "claude-opus-4-6-eff-high--cli--cursor-xl--dev",
"positions": [
{
"attempts": [
{
"attempt_index": 0,
"backoff_ms": null,
"charged": true,
"ended_at": "2026-08-13T14:51:42.499954+00:00",
"http_status": null,
"outcome": "valid",
"reached_model": true,
"reason": "ok",
"request_id": null,
"started_at": "2026-08-13T14:50:59.189407+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-08-13T14:52:38.275670+00:00",
"http_status": null,
"outcome": "valid",
"reached_model": true,
"reason": "ok",
"request_id": null,
"started_at": "2026-08-13T14:51:46.372576+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-08-13T14:53:31.488405+00:00",
"http_status": null,
"outcome": "valid",
"reached_model": true,
"reason": "ok",
"request_id": null,
"started_at": "2026-08-13T14:52:41.686707+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-08-13T14:54:28.970876+00:00",
"http_status": null,
"outcome": "valid",
"reached_model": true,
"reason": "ok",
"request_id": null,
"started_at": "2026-08-13T14:53:35.189144+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
}
}
}