claude-opus-4-6 @ high · cursor

cursorhigh
config
claude-opus-4-6-eff-high--cli--cursor--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
claude-opus-4-6 @high · cursor P-q slot 0 截图

截图是 similarity 通道测量时的原始像素。运行 live 会在 sandboxed iframe 中重新执行原始输出;渲染结果取决于你的浏览器和字体,不保证与测量像素一致。

similarity 邻居本 session 没有 similarity 数据 —— 这个 batch 没有计算 pairs。

Fidelity —— 卡片展示的数据对不对?

  • namematch
  • conditionmatch
  • datematch
  • max tempambiguous展示值:25max-equals-min
  • min tempambiguous展示值:25max-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, 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;
  color: #fff;
}

.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;
  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: 32px;
}

.location {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.date {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

.weather-icon {
  font-size: 56px;
  line-height: 1;
}

.temps-main {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 8px;
}

.temp-max {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -2px;
}

.temp-min {
  font-size: 32px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.condition {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  text-transform: capitalize;
}

.hourly-section h3 {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.hourly-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 140px;
  padding-top: 24px;
  position: relative;
}

.hour-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}

.hour-bar .bar {
  width: 100%;
  max-width: 20px;
  border-radius: 6px 6px 4px 4px;
  background: linear-gradient(180deg, rgba(99, 179, 237, 0.9) 0%, rgba(66, 133, 244, 0.6) 100%);
  transition: height 0.3s ease;
  min-height: 4px;
}

.hour-bar .temp-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hour-bar .time-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

.error-msg {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.error-msg .error-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.loading {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}
</style>
</head>
<body>
<div class="card" id="card">
  <div class="loading" id="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 basePath = isPast ? '/api/om/archive' : '/api/om/forecast';

  const url = basePath +
    '?latitude=' + encodeURIComponent(lat) +
    '&longitude=' + encodeURIComponent(lon) +
    '&daily=temperature_2m_max,temperature_2m_min,weather_code' +
    '&hourly=temperature_2m' +
    '&timezone=UTC' +
    '&temperature_unit=celsius' +
    '&start_date=' + encodeURIComponent(date) +
    '&end_date=' + encodeURIComponent(date);

  fetch(url)
    .then(function(r) {
      if (!r.ok) throw new Error('HTTP ' + r.status);
      return r.json();
    })
    .then(function(data) {
      render(data);
    })
    .catch(function() {
      document.getElementById('card').innerHTML =
        '<div class="error-msg"><div class="error-icon">⚠️</div>Unable to load weather data.</div>';
    });

  function weatherInfo(code) {
    var map = {
      0: { label: 'Clear sky', icon: '☀️' },
      1: { label: 'Mainly clear', icon: '🌤️' },
      2: { label: 'Partly cloudy', icon: '⛅' },
      3: { label: 'Overcast', icon: '☁️' },
      45: { label: 'Foggy', icon: '🌫️' },
      48: { label: 'Depositing rime fog', icon: '🌫️' },
      51: { label: 'Light drizzle', icon: '🌦️' },
      53: { label: 'Moderate drizzle', icon: '🌦️' },
      55: { label: 'Dense drizzle', icon: '🌧️' },
      56: { label: 'Freezing drizzle', icon: '🌧️' },
      57: { label: 'Dense freezing drizzle', icon: '🌧️' },
      61: { label: 'Slight rain', icon: '🌧️' },
      63: { label: 'Moderate rain', icon: '🌧️' },
      65: { label: 'Heavy rain', icon: '🌧️' },
      66: { label: 'Freezing rain', icon: '🌧️' },
      67: { label: 'Heavy freezing rain', icon: '🌧️' },
      71: { label: 'Slight snow', icon: '🌨️' },
      73: { label: 'Moderate snow', icon: '🌨️' },
      75: { label: 'Heavy snow', icon: '❄️' },
      77: { label: 'Snow grains', icon: '❄️' },
      80: { label: 'Slight showers', icon: '🌦️' },
      81: { label: 'Moderate showers', icon: '🌧️' },
      82: { label: 'Violent showers', icon: '🌧️' },
      85: { label: 'Slight snow showers', icon: '🌨️' },
      86: { label: 'Heavy snow showers', icon: '❄️' },
      95: { label: 'Thunderstorm', icon: '⛈️' },
      96: { label: 'Thunderstorm with hail', icon: '⛈️' },
      99: { label: 'Thunderstorm with heavy hail', icon: '⛈️' }
    };
    return map[code] || { label: 'Unknown', icon: '🌡️' };
  }

  function formatDate(dateStr) {
    var d = new Date(dateStr + 'T00:00:00Z');
    var options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric', timeZone: 'UTC' };
    return d.toLocaleDateString('en-US', options);
  }

  function render(data) {
    var daily = data.daily;
    var hourly = data.hourly;
    var tMax = daily.temperature_2m_max[0];
    var tMin = daily.temperature_2m_min[0];
    var code = daily.weather_code[0];
    var info = weatherInfo(code);
    var temps = hourly.temperature_2m;

    var minT = Math.min.apply(null, temps);
    var maxT = Math.max.apply(null, temps);
    var range = maxT - minT || 1;

    var barsHtml = '';
    for (var i = 0; i < 24; i++) {
      var t = temps[i];
      var pct = ((t - minT) / range) * 100;
      var h = Math.max(8, pct);
      var hour = i.toString().padStart(2, '0') + ':00';
      var showLabel = (i % 3 === 0);
      barsHtml += '<div class="hour-bar">' +
        (showLabel ? '<span class="temp-label">' + Math.round(t) + '°</span>' : '<span class="temp-label" style="visibility:hidden">0</span>') +
        '<div class="bar" style="height:' + h + '%"></div>' +
        (showLabel ? '<span class="time-label">' + hour + '</span>' : '<span class="time-label" style="visibility:hidden">0</span>') +
        '</div>';
    }

    document.getElementById('card').innerHTML =
      '<div class="card-header">' +
        '<div>' +
          '<div class="location">' + escapeHtml(name) + '</div>' +
          '<div class="date">' + formatDate(date) + '</div>' +
        '</div>' +
        '<div class="weather-icon">' + info.icon + '</div>' +
      '</div>' +
      '<div class="temps-main">' +
        '<span class="temp-max">' + Math.round(tMax) + '°C</span>' +
        '<span class="temp-min">' + Math.round(tMin) + '°C</span>' +
      '</div>' +
      '<div class="condition">' + info.label + '</div>' +
      '<div class="hourly-section">' +
        '<h3>Hourly Temperature</h3>' +
        '<div class="hourly-chart">' + barsHtml + '</div>' +
      '</div>';
  }

  function escapeHtml(str) {
    var d = document.createElement('div');
    d.appendChild(document.createTextNode(str));
    return d.innerHTML;
  }
})();
</script>
</body>
</html>

L1 —— 廉价的确定性描述量

bytes 总计7,864html / css / js301 / 2,536 / 5,027
dom 节点10dom 深度4
css 规则20含 js
brightness43.4contrast20.0
colorfulness28.6留白57.6%

该 slot 的 telemetry

prompt tokens4completion tokens3,392
total tokens3,396wall48.8 s
costrequest id
config.json580 B
{
  "N": 2,
  "auth": {
    "credential_ref": "WCB_NONE",
    "method": "oauth-login"
  },
  "billing": "plan",
  "config_id": "claude-opus-4-6-eff-high--cli--cursor--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": 12154,
    "cost_usd": null,
    "prompt_tokens": 16,
    "total_tokens": 12170,
    "wall_ms": 194368
  },
  "transport": "cursor-agent-cli-isolated-home",
  "vendor_sanction_ref": null
}
send-log2.5 KB
{
  "N": 2,
  "batch_id": "2026-08-13--cursor-s0",
  "config_id": "claude-4.6-opus-eff-high--cli--cursor--dev",
  "positions": [
    {
      "attempts": [
        {
          "attempt_index": 0,
          "backoff_ms": null,
          "charged": true,
          "ended_at": "2026-08-12T21:42:47.891194+00:00",
          "http_status": null,
          "outcome": "valid",
          "reached_model": true,
          "reason": "ok",
          "request_id": null,
          "started_at": "2026-08-12T21:42:00.189645+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-12T21:43:39.547601+00:00",
          "http_status": null,
          "outcome": "valid",
          "reached_model": true,
          "reason": "ok",
          "request_id": null,
          "started_at": "2026-08-12T21:42:50.744881+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-12T21:44:36.594346+00:00",
          "http_status": null,
          "outcome": "valid",
          "reached_model": true,
          "reason": "ok",
          "request_id": null,
          "started_at": "2026-08-12T21:43:42.975696+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-12T21:45:24.868528+00:00",
          "http_status": null,
          "outcome": "valid",
          "reached_model": true,
          "reason": "ok",
          "request_id": null,
          "started_at": "2026-08-12T21:44:40.616580+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
    }
  }
}