kimi-k3 @ low · cursor-xl

cursor-xllow
config
kimi-k3-eff-low--cli--cursor-xl--dev
batch
2026-07-19--unified
transport
cursor-agent-cli-isolated-home
protocol
cli · plan
served model
kimi-k3-low
采集于
2026年7月18日 11:54 · N=2
variant
live
slot 0 · P-q · sandboxed iframe
kimi-k3 @low · cursor-xl P-q slot 0 截图

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

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

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</title>
<style>
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html, body { height: 100%; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #0b1020;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eef2ff;
    overflow: hidden;
  }
  body.clear   { background: linear-gradient(160deg, #1e3a8a 0%, #3b82f6 55%, #93c5fd 100%); }
  body.cloudy  { background: linear-gradient(160deg, #1f2937 0%, #4b5563 55%, #9ca3af 100%); }
  body.rain    { background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 55%, #3f5f8a 100%); }
  body.snow    { background: linear-gradient(160deg, #334155 0%, #64748b 55%, #cbd5e1 100%); }
  body.storm   { background: linear-gradient(160deg, #111827 0%, #312e81 55%, #4c1d95 100%); }
  body.fog     { background: linear-gradient(160deg, #374151 0%, #6b7280 55%, #d1d5db 100%); }

  .card {
    width: 720px;
    max-height: 720px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 28px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    padding: 44px 48px 36px;
    display: flex;
    flex-direction: column;
    gap: 26px;
  }

  .header { display: flex; justify-content: space-between; align-items: flex-start; }
  .location { font-size: 34px; font-weight: 700; letter-spacing: -0.5px; }
  .date { font-size: 15px; color: rgba(255,255,255,0.75); margin-top: 4px; font-weight: 500; }
  .condition-badge {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 10px 18px; border-radius: 999px;
    font-size: 15px; font-weight: 600;
  }
  .condition-badge .icon { font-size: 22px; }

  .temps { display: flex; align-items: baseline; gap: 28px; }
  .tmax { font-size: 96px; font-weight: 200; letter-spacing: -4px; line-height: 1; }
  .tmax sup { font-size: 36px; font-weight: 300; }
  .tmin-wrap { display: flex; flex-direction: column; gap: 2px; }
  .tmin { font-size: 30px; font-weight: 300; color: rgba(255,255,255,0.7); }
  .tmin-label { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.55); }

  .divider { height: 1px; background: rgba(255,255,255,0.18); }

  .hourly-title { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
  .hourly {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 6px;
  }
  .hour {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 10px 0; border-radius: 12px;
    background: rgba(255,255,255,0.06);
    font-size: 12px;
  }
  .hour .h { color: rgba(255,255,255,0.6); font-weight: 500; }
  .hour .bar { width: 4px; border-radius: 2px; background: linear-gradient(to top, #60a5fa, #fbbf24); }
  .hour .t { font-weight: 700; font-size: 13px; }

  .error {
    text-align: center; padding: 40px 0;
    font-size: 18px; color: #fecaca; font-weight: 600;
  }
  .loading { text-align: center; padding: 40px 0; font-size: 16px; color: rgba(255,255,255,0.7); }
</style>
</head>
<body>
  <div class="card" id="card">
    <div class="loading">Loading weather…</div>
  </div>

<script>
(function () {
  const params = new URLSearchParams(location.search);
  const lat = parseFloat(params.get('lat') ?? '52.52');
  const lon = parseFloat(params.get('lon') ?? '13.405');
  const name = params.get('name') || 'Berlin';
  const todayUTC = new Date().toISOString().slice(0, 10);
  const date = params.get('date') || todayUTC;

  const isPast = date < todayUTC;
  const base = isPast ? '/api/om/archive' : '/api/om/forecast';

  const q = 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
  });

  const WMO = [
    [[0],            ['Clear sky', '☀️', 'clear']],
    [[1,2],          ['Partly cloudy', '⛅', 'clear']],
    [[3],            ['Overcast', '☁️', 'cloudy']],
    [[45,48],        ['Fog', '🌫️', 'fog']],
    [[51,53,55,56,57], ['Drizzle', '🌦️', 'rain']],
    [[61,63,65,66,67,80,81,82], ['Rain', '🌧️', 'rain']],
    [[71,73,75,77,85,86], ['Snow', '❄️', 'snow']],
    [[95,96,99],     ['Thunderstorm', '⛈️', 'storm']]
  ];
  function decode(code) {
    for (const [codes, info] of WMO) if (codes.includes(code)) return info;
    return ['Unknown', '🌡️', 'cloudy'];
  }

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

  function showError() {
    document.getElementById('card').innerHTML =
      '<div class="error">Weather data could not be loaded.<br>Please try again later.</div>';
  }

  fetch(base + '?' + q.toString())
    .then(r => { if (!r.ok) throw new Error(r.status); return r.json(); })
    .then(data => {
      if (!data.daily || !data.daily.time || !data.daily.time.length) throw new Error('no 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 [label, icon, theme] = decode(code);
      document.body.className = theme;

      const times = data.hourly.time, temps = data.hourly.temperature_2m;
      const dayTemps = [];
      for (let i = 0; i < times.length; i++) {
        if (times[i].slice(0, 10) === date) {
          dayTemps.push({ h: parseInt(times[i].slice(11, 13), 10), t: temps[i] });
        }
      }
      if (!dayTemps.length) throw new Error('no hourly');

      const lo = Math.min(...dayTemps.map(d => d.t));
      const hi = Math.max(...dayTemps.map(d => d.t));
      const span = Math.max(hi - lo, 0.1);

      const hoursHtml = dayTemps.map(d => {
        const bh = 8 + Math.round(((d.t - lo) / span) * 26);
        return '<div class="hour"><span class="h">' + String(d.h).padStart(2, '0') + '</span>' +
               '<span class="bar" style="height:' + bh + 'px"></span>' +
               '<span class="t">' + Math.round(d.t) + '°</span></div>';
      }).join('');

      document.getElementById('card').innerHTML =
        '<div class="header">' +
          '<div><div class="location">' + escapeHtml(name) + '</div>' +
          '<div class="date">' + fmtDate(date) + '</div></div>' +
          '<div class="condition-badge"><span class="icon">' + icon + '</span>' + label + '</div>' +
        '</div>' +
        '<div class="temps">' +
          '<div class="tmax">' + Math.round(tmax) + '<sup>°C</sup></div>' +
          '<div class="tmin-wrap"><span class="tmin">' + Math.round(tmin) + '°C</span>' +
          '<span class="tmin-label">Low</span></div>' +
        '</div>' +
        '<div class="divider"></div>' +
        '<div><div class="hourly-title">Hourly temperature</div>' +
        '<div class="hourly">' + hoursHtml + '</div></div>';
    })
    .catch(showError);

  function escapeHtml(s) {
    return s.replace(/[&<>"']/g, c => ({'&':'&amp;','<':'&lt;','>':'&gt;','"':'&quot;',"'":'&#39;'}[c]));
  }
})();
</script>
</body>
</html>

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

bytes 总计7,510html / css / js312 / 3,210 / 3,988
dom 节点10dom 深度4
css 规则30含 js
brightness62.4contrast21.8
colorfulness24.5留白40.1%

该 slot 的 telemetry

prompt tokens17,405completion tokens2,497
total tokens19,902wall33 s
costrequest id
config.json557 B
{
  "N": 2,
  "auth": {
    "credential_ref": "WCB_NONE",
    "method": "oauth-login"
  },
  "billing": "plan",
  "config_id": "kimi-k3-eff-low--cli--cursor-xl--dev",
  "effort": "low",
  "family": "kimi",
  "m": {
    "min": 1,
    "q": 2
  },
  "model_id": "kimi-k3",
  "protocol": "cli",
  "served_model": "kimi-k3-low",
  "telemetry": {
    "completion_tokens": 11574,
    "cost_usd": null,
    "prompt_tokens": 38151,
    "total_tokens": 49725,
    "wall_ms": 156112
  },
  "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": "kimi-k3-eff-low--cli--cursor-xl--dev",
  "positions": [
    {
      "attempts": [
        {
          "attempt_index": 0,
          "backoff_ms": null,
          "charged": true,
          "ended_at": "2026-08-13T16:05:55.463038+00:00",
          "http_status": null,
          "outcome": "valid",
          "reached_model": true,
          "reason": "ok",
          "request_id": null,
          "started_at": "2026-08-13T16:04:54.602187+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-13T16:06:32.197775+00:00",
          "http_status": null,
          "outcome": "valid",
          "reached_model": true,
          "reason": "ok",
          "request_id": null,
          "started_at": "2026-08-13T16:05:59.146921+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-13T16:07:37.895292+00:00",
          "http_status": null,
          "outcome": "valid",
          "reached_model": true,
          "reason": "ok",
          "request_id": null,
          "started_at": "2026-08-13T16:06:35.692564+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-13T16:08:55.350829+00:00",
          "http_status": null,
          "outcome": "model-failed",
          "reached_model": true,
          "reason": "no-valid-html",
          "request_id": null,
          "started_at": "2026-08-13T16:07:41.481385+00:00"
        }
      ],
      "block_index": 1,
      "model_reaching_attempt_index": 0,
      "slot_index": 1,
      "terminal_state": "model-failed",
      "variant": "P-min"
    }
  ],
  "retry_policy": {
    "max_unreachable_retries": 5,
    "rate_limit_backoff": {
      "max_attempts": 4,
      "max_total_ms": 60000
    }
  }
}