claude-sonnet-4-6 @ max · kiro

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

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

similarity 邻居

限于 session 2026-07-19--unified

similarity 衡量本 session 内的趋同程度 —— 不是质量。

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>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #0f1117;
    --surface: #1a1d2e;
    --surface2: #222539;
    --border: rgba(255,255,255,0.07);
    --text: #e8eaf6;
    --text-muted: #7c7f9e;
    --text-dim: #4a4d6a;
    --accent: #6c8cff;
    --accent2: #a78bfa;
    --warm: #f97316;
    --cool: #38bdf8;
    --card-radius: 24px;
    --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  }

  html, body {
    width: 1280px;
    height: 800px;
    overflow: hidden;
    background: var(--bg);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── animated background ── */
  .bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
  }
  .bg-orbs span {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    animation: drift 18s ease-in-out infinite alternate;
  }
  .bg-orbs span:nth-child(1) { width: 560px; height: 560px; background: #3b5bf6; top: -120px; left: -100px; animation-delay: 0s; }
  .bg-orbs span:nth-child(2) { width: 420px; height: 420px; background: #7c3aed; bottom: -80px; right: -60px; animation-delay: -6s; }
  .bg-orbs span:nth-child(3) { width: 300px; height: 300px; background: #0ea5e9; top: 40%; left: 50%; animation-delay: -11s; }
  @keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(40px,30px) scale(1.08); } }

  /* ── card ── */
  .card {
    position: relative;
    z-index: 1;
    width: 920px;
    background: var(--surface);
    border-radius: var(--card-radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition), transform var(--transition);
  }
  .card.visible { opacity: 1; transform: translateY(0); }

  /* ── hero band ── */
  .hero {
    position: relative;
    padding: 40px 44px 32px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108,140,255,0.12) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .location-block {}
  .location-name {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    background: linear-gradient(135deg, #e8eaf6, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .location-date {
    margin-top: 6px;
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .condition-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }
  .condition-icon {
    font-size: 72px;
    line-height: 1;
    filter: drop-shadow(0 4px 20px rgba(108,140,255,0.4));
    animation: float 4s ease-in-out infinite;
  }
  @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  .condition-label {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* ── temp display ── */
  .temps {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    margin-top: 24px;
  }
  .temp-max {
    font-size: 80px;
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 1;
    color: #fff;
  }
  .temp-max .unit { font-size: 28px; font-weight: 400; letter-spacing: 0; color: var(--text-muted); vertical-align: super; margin-left: 2px; }
  .temp-range {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 10px;
  }
  .temp-range-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
  }
  .temp-range-item .dot {
    width: 8px; height: 8px; border-radius: 50%;
  }
  .dot-high { background: #fb7185; box-shadow: 0 0 8px #fb718580; }
  .dot-low  { background: #38bdf8; box-shadow: 0 0 8px #38bdf880; }
  .temp-range-label { color: var(--text-muted); font-weight: 400; font-size: 13px; }

  /* ── divider ── */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
    flex-shrink: 0;
  }

  /* ── hourly section ── */
  .hourly-section {
    padding: 28px 44px 36px;
    flex-shrink: 0;
  }
  .section-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 20px;
  }

  .hourly-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--surface2) transparent;
    padding-bottom: 4px;
  }
  .hourly-scroll::-webkit-scrollbar { height: 4px; }
  .hourly-scroll::-webkit-scrollbar-track { background: transparent; }
  .hourly-scroll::-webkit-scrollbar-thumb { background: var(--surface2); border-radius: 2px; }

  .hourly-track {
    display: flex;
    gap: 6px;
    width: max-content;
    padding: 4px 2px 8px;
  }

  .hour-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 10px;
    border-radius: 14px;
    background: var(--surface2);
    border: 1px solid var(--border);
    min-width: 62px;
    cursor: default;
    transition: background var(--transition), transform var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
  }
  .hour-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(108,140,255,0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition);
  }
  .hour-card:hover { background: #2a2e4a; transform: translateY(-3px); border-color: rgba(108,140,255,0.3); }
  .hour-card:hover::before { opacity: 1; }
  .hour-card.now {
    background: linear-gradient(160deg, #2a3580, #1e2660);
    border-color: rgba(108,140,255,0.5);
    box-shadow: 0 0 0 1px rgba(108,140,255,0.2), 0 8px 24px rgba(108,140,255,0.2);
  }
  .hour-card.now::before { opacity: 1; }

  .hour-time {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .hour-card.now .hour-time { color: #a5b4fc; }

  .hour-bar-wrap {
    width: 4px;
    height: 44px;
    background: var(--surface);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
  }
  .hour-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 2px;
    transition: height 0.6s cubic-bezier(0.34,1.56,0.64,1);
  }

  .hour-temp {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
  }

  /* ── sparkline ── */
  .sparkline-wrap {
    position: relative;
    margin-top: 4px;
    height: 56px;
  }
  .sparkline-wrap svg { width: 100%; height: 100%; overflow: visible; }

  /* ── error / loading states ── */
  .state-card {
    position: relative;
    z-index: 1;
    width: 520px;
    background: var(--surface);
    border-radius: var(--card-radius);
    border: 1px solid var(--border);
    box-shadow: 0 40px 120px rgba(0,0,0,0.6);
    padding: 60px 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .state-icon { font-size: 56px; }
  .state-title { font-size: 22px; font-weight: 700; color: var(--text); }
  .state-msg { font-size: 14px; color: var(--text-muted); line-height: 1.6; max-width: 340px; }

  /* spinner */
  .spinner {
    width: 48px; height: 48px;
    border: 3px solid var(--surface2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  .loading-text { font-size: 15px; color: var(--text-muted); }
</style>
</head>
<body>

<div class="bg-orbs">
  <span></span><span></span><span></span>
</div>

<div id="root"></div>

<script>
(async () => {
  const root = document.getElementById('root');

  // ── helpers ──────────────────────────────────────────────────────────────
  function qs(key) {
    return new URLSearchParams(location.search).get(key);
  }

  function todayUTC() {
    return new Date().toISOString().slice(0, 10);
  }

  function formatDate(iso) {
    const [y, m, d] = iso.split('-').map(Number);
    const dt = new Date(Date.UTC(y, m - 1, d));
    return dt.toLocaleDateString('en-GB', { weekday: 'long', day: 'numeric', month: 'long', year: 'numeric', timeZone: 'UTC' });
  }

  function isPast(iso) {
    const today = todayUTC();
    return iso < today;
  }

  // WMO weather interpretation codes → emoji + label
  const WMO = {
    0:  ['☀️', 'Clear Sky'],
    1:  ['🌤️', 'Mainly Clear'],
    2:  ['⛅', 'Partly Cloudy'],
    3:  ['☁️', 'Overcast'],
    45: ['🌫️', 'Fog'],
    48: ['🌫️', 'Icy Fog'],
    51: ['🌦️', 'Light Drizzle'],
    53: ['🌦️', 'Drizzle'],
    55: ['🌧️', 'Heavy Drizzle'],
    56: ['🌨️', 'Freezing Drizzle'],
    57: ['🌨️', 'Heavy Freezing Drizzle'],
    61: ['🌧️', 'Slight Rain'],
    63: ['🌧️', 'Rain'],
    65: ['🌧️', 'Heavy Rain'],
    66: ['🌨️', 'Freezing Rain'],
    67: ['🌨️', 'Heavy Freezing Rain'],
    71: ['🌨️', 'Slight Snowfall'],
    73: ['❄️', 'Snowfall'],
    75: ['❄️', 'Heavy Snowfall'],
    77: ['🌨️', 'Snow Grains'],
    80: ['🌦️', 'Slight Showers'],
    81: ['🌧️', 'Showers'],
    82: ['⛈️', 'Violent Showers'],
    85: ['🌨️', 'Snow Showers'],
    86: ['❄️', 'Heavy Snow Showers'],
    95: ['⛈️', 'Thunderstorm'],
    96: ['⛈️', 'Thunderstorm w/ Hail'],
    99: ['⛈️', 'Thunderstorm w/ Heavy Hail'],
  };

  function wmo(code) {
    return WMO[code] || ['🌡️', `Code ${code}`];
  }

  // temperature → color gradient (cool blue → warm orange-red)
  function tempColor(t, tMin, tMax) {
    const range = tMax - tMin || 1;
    const ratio = Math.max(0, Math.min(1, (t - tMin) / range));
    // interpolate: cool #38bdf8 → neutral #a78bfa → warm #f97316
    const stops = [
      [56, 189, 248],   // cool
      [167, 139, 250],  // mid
      [249, 115, 22],   // warm
    ];
    let r, g, b;
    if (ratio < 0.5) {
      const f = ratio / 0.5;
      r = stops[0][0] + (stops[1][0] - stops[0][0]) * f;
      g = stops[0][1] + (stops[1][1] - stops[0][1]) * f;
      b = stops[0][2] + (stops[1][2] - stops[0][2]) * f;
    } else {
      const f = (ratio - 0.5) / 0.5;
      r = stops[1][0] + (stops[2][0] - stops[1][0]) * f;
      g = stops[1][1] + (stops[2][1] - stops[1][1]) * f;
      b = stops[1][2] + (stops[2][2] - stops[1][2]) * f;
    }
    return `rgb(${Math.round(r)},${Math.round(g)},${Math.round(b)})`;
  }

  // ── show loading ──────────────────────────────────────────────────────────
  root.innerHTML = `
    <div class="state-card">
      <div class="spinner"></div>
      <p class="loading-text">Fetching weather data…</p>
    </div>`;

  // ── params ────────────────────────────────────────────────────────────────
  const lat  = parseFloat(qs('lat')  ?? '52.52');
  const lon  = parseFloat(qs('lon')  ?? '13.405');
  const name = qs('name') ?? 'Berlin';
  const date = qs('date') ?? todayUTC();

  // ── fetch ─────────────────────────────────────────────────────────────────
  const endpoint = isPast(date) ? '/api/om/archive' : '/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:       date,
    end_date:         date,
  });

  let data;
  try {
    const resp = await fetch(`${endpoint}?${params}`);
    if (!resp.ok) throw new Error(`HTTP ${resp.status}: ${resp.statusText}`);
    data = await resp.json();
  } catch (err) {
    root.innerHTML = `
      <div class="state-card">
        <div class="state-icon">⚠️</div>
        <h2 class="state-title">Could not load weather data</h2>
        <p class="state-msg">${err.message || 'An unexpected error occurred while fetching the forecast.'}</p>
      </div>`;
    return;
  }

  // ── parse ─────────────────────────────────────────────────────────────────
  let tMax, tMin, wCode, hourlyTemps;
  try {
    const di = data.daily?.time?.indexOf(date) ?? -1;
    if (di === -1) throw new Error('Date not found in response');
    tMax  = data.daily.temperature_2m_max[di];
    tMin  = data.daily.temperature_2m_min[di];
    wCode = data.daily.weather_code[di];

    // hourly is always 24 values for the single requested day
    hourlyTemps = data.hourly?.temperature_2m?.slice(0, 24) ?? [];
    if (tMax == null || tMin == null) throw new Error('Missing temperature values');
  } catch (err) {
    root.innerHTML = `
      <div class="state-card">
        <div class="state-icon">📭</div>
        <h2 class="state-title">No data for this date</h2>
        <p class="state-msg">${err.message}</p>
      </div>`;
    return;
  }

  const [icon, label] = wmo(wCode);
  const nowHour = new Date().getUTCHours();
  const allTemps = hourlyTemps.filter(t => t != null);
  const hMin = allTemps.length ? Math.min(...allTemps) : tMin;
  const hMax = allTemps.length ? Math.max(...allTemps) : tMax;

  // ── sparkline path ────────────────────────────────────────────────────────
  function buildSparkline(temps, w, h) {
    const pts = temps.map((t, i) => {
      const x = (i / (temps.length - 1)) * w;
      const y = h - ((t - hMin) / (hMax - hMin || 1)) * (h - 8) - 4;
      return [x, y];
    });
    // smooth cubic bezier through points
    let d = `M ${pts[0][0]},${pts[0][1]}`;
    for (let i = 1; i < pts.length; i++) {
      const cp1x = pts[i-1][0] + (pts[i][0] - (pts[i-2]?.[0] ?? pts[i-1][0])) / 6;
      const cp1y = pts[i-1][1] + (pts[i][1] - (pts[i-2]?.[1] ?? pts[i-1][1])) / 6;
      const cp2x = pts[i][0]   - (pts[i+1]?.[0] ?? pts[i][0]   - (pts[i-1][0])) / 6;
      const cp2y = pts[i][1]   - (pts[i+1]?.[1] ?? pts[i][1]   - (pts[i-1][1])) / 6;
      d += ` C ${cp1x},${cp1y} ${cp2x},${cp2y} ${pts[i][0]},${pts[i][1]}`;
    }
    return { d, pts };
  }

  // ── render ────────────────────────────────────────────────────────────────
  const hourCards = hourlyTemps.map((t, i) => {
    const isNow = (date === todayUTC() && i === nowHour);
    const barPct = allTemps.length > 1 ? Math.max(8, ((t - hMin) / (hMax - hMin || 1)) * 100) : 50;
    const col = tempColor(t, hMin, hMax);
    return `
      <div class="hour-card${isNow ? ' now' : ''}">
        <span class="hour-time">${String(i).padStart(2,'0')}:00</span>
        <div class="hour-bar-wrap">
          <div class="hour-bar" style="height:${barPct}%;background:${col};"></div>
        </div>
        <span class="hour-temp">${t != null ? Math.round(t) + '°' : '—'}</span>
      </div>`;
  }).join('');

  root.innerHTML = `
    <div class="card" id="wcard">
      <div class="hero">
        <div class="hero-top">
          <div class="location-block">
            <div class="location-name">${name}</div>
            <div class="location-date">${formatDate(date)}</div>
          </div>
          <div class="condition-block">
            <div class="condition-icon">${icon}</div>
            <div class="condition-label">${label}</div>
          </div>
        </div>

        <div class="temps">
          <div class="temp-max">${Math.round(tMax)}<span class="unit">°C</span></div>
          <div class="temp-range">
            <div class="temp-range-item">
              <span class="dot dot-high"></span>
              <span>${Math.round(tMax)}°C</span>
              <span class="temp-range-label">High</span>
            </div>
            <div class="temp-range-item">
              <span class="dot dot-low"></span>
              <span>${Math.round(tMin)}°C</span>
              <span class="temp-range-label">Low</span>
            </div>
          </div>
        </div>
      </div>

      <div class="divider"></div>

      <div class="hourly-section">
        <div class="section-title">Hourly Temperature</div>

        <div class="sparkline-wrap" id="spark-wrap"></div>

        <div class="hourly-scroll" style="margin-top:16px;">
          <div class="hourly-track">${hourCards}</div>
        </div>
      </div>
    </div>`;

  // ── sparkline (rendered after DOM) ───────────────────────────────────────
  requestAnimationFrame(() => {
    const wrap = document.getElementById('spark-wrap');
    if (!wrap || !hourlyTemps.length) return;
    const W = wrap.offsetWidth || 800;
    const H = 56;
    const { d, pts } = buildSparkline(hourlyTemps, W, H);

    // gradient fill
    const fillPts = [[pts[0][0], H], ...pts, [pts[pts.length-1][0], H]];
    const fillD = `M ${fillPts[0][0]},${fillPts[0][1]} L ${pts[0][0]},${pts[0][1]}` +
      d.slice(1) +
      ` L ${pts[pts.length-1][0]},${H} Z`;

    // current hour marker
    const markerHTML = (date === todayUTC() && pts[nowHour]) ? `
      <line x1="${pts[nowHour][0]}" y1="0" x2="${pts[nowHour][0]}" y2="${H}" 
            stroke="rgba(108,140,255,0.35)" stroke-width="1" stroke-dasharray="3,3"/>
      <circle cx="${pts[nowHour][0]}" cy="${pts[nowHour][1]}" r="4" 
              fill="#6c8cff" stroke="#1a1d2e" stroke-width="2"/>` : '';

    wrap.innerHTML = `<svg viewBox="0 0 ${W} ${H}" preserveAspectRatio="none">
      <defs>
        <linearGradient id="spark-fill" x1="0" y1="0" x2="0" y2="1">
          <stop offset="0%" stop-color="#6c8cff" stop-opacity="0.25"/>
          <stop offset="100%" stop-color="#6c8cff" stop-opacity="0"/>
        </linearGradient>
        <linearGradient id="spark-line" x1="0" y1="0" x2="1" y2="0">
          <stop offset="0%" stop-color="#38bdf8"/>
          <stop offset="50%" stop-color="#a78bfa"/>
          <stop offset="100%" stop-color="#f97316"/>
        </linearGradient>
      </defs>
      <path d="${fillD}" fill="url(#spark-fill)"/>
      <path d="${d}" fill="none" stroke="url(#spark-line)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
      ${markerHTML}
    </svg>`;
  });

  // animate card in
  requestAnimationFrame(() => {
    document.getElementById('wcard')?.classList.add('visible');
  });

})();
</script>
</body>
</html>

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

bytes 总计19,782html / css / js295 / 8,168 / 11,319
dom 节点13dom 深度4
css 规则63含 js
brightness29.0contrast18.2
colorfulness14.9留白92.7%

该 slot 的 telemetry

prompt tokens0completion tokens0
total tokens0wall173 s
costrequest id
config.json583 B
{
  "N": 2,
  "auth": {
    "credential_ref": "WCB_NONE",
    "method": "oauth-login"
  },
  "billing": "plan",
  "config_id": "claude-sonnet-4-6-eff-max--cli--kiro--dev",
  "effort": "max",
  "family": "claude",
  "m": {
    "min": 2,
    "q": 2
  },
  "model_id": "claude-sonnet-4-6",
  "protocol": "cli",
  "served_model": "claude-sonnet-4.6",
  "telemetry": {
    "completion_tokens": null,
    "cost_usd": null,
    "prompt_tokens": null,
    "total_tokens": null,
    "wall_ms": 470963
  },
  "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-sonnet-4-6-eff-max--cli--kiro--dev",
  "positions": [
    {
      "attempts": [
        {
          "attempt_index": 0,
          "backoff_ms": null,
          "charged": true,
          "ended_at": "2026-07-18T16:59:56.568539+00:00",
          "http_status": null,
          "outcome": "valid",
          "reached_model": true,
          "reason": "ok",
          "request_id": null,
          "started_at": "2026-07-18T16:57:03.334044+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-18T17:01:05.879326+00:00",
          "http_status": null,
          "outcome": "valid",
          "reached_model": true,
          "reason": "ok",
          "request_id": null,
          "started_at": "2026-07-18T17:00:00.013653+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-18T17:02:55.784145+00:00",
          "http_status": null,
          "outcome": "valid",
          "reached_model": true,
          "reason": "ok",
          "request_id": null,
          "started_at": "2026-07-18T17:01:53.193998+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-18T17:05:49.409503+00:00",
          "http_status": null,
          "outcome": "valid",
          "reached_model": true,
          "reason": "ok",
          "request_id": null,
          "started_at": "2026-07-18T17:02:59.423842+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
    }
  }
}