Files
ccs/.github/pr-assets/issue-1058/index.html
T

139 lines
3.4 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Issue 1058 UI Evidence</title>
<style>
:root {
color-scheme: light dark;
--bg: #111111;
--fg: #f5f1ea;
--muted: #b8aea0;
--card: #1a1714;
--border: #3a332b;
--accent: #ef4444;
}
body {
margin: 0;
padding: 32px;
background: var(--bg);
color: var(--fg);
font:
15px/1.5 "SF Mono",
"IBM Plex Sans",
system-ui,
sans-serif;
}
main {
max-width: 1200px;
margin: 0 auto;
}
h1,
h2,
p {
margin: 0;
}
.header,
.shot {
border: 1px solid var(--border);
background: var(--card);
border-radius: 18px;
}
.header {
padding: 24px;
display: grid;
gap: 12px;
}
.summary {
display: grid;
gap: 16px;
margin-top: 20px;
}
.summary-card {
border: 1px solid var(--border);
border-radius: 14px;
padding: 16px;
}
.eyebrow {
color: var(--accent);
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.14em;
}
.muted {
color: var(--muted);
}
.shot {
margin-top: 24px;
overflow: hidden;
}
.shot-header {
padding: 16px 20px;
border-bottom: 1px solid var(--border);
display: grid;
gap: 6px;
}
img {
display: block;
width: 100%;
height: auto;
}
</style>
</head>
<body>
<main>
<section class="header">
<p class="eyebrow">Issue 1058</p>
<h1>Codex selector now exposes pinned effort variants</h1>
<p class="muted">
Capture environment: local dashboard at <code>http://127.0.0.1:3001/cliproxy</code>,
light theme, Codex provider editor, Model Config tab.
</p>
<div class="summary">
<div class="summary-card">
<p class="eyebrow">What changed</p>
<p>The selector now offers real codex model variants like <code>-high</code> and <code>-xhigh</code>.</p>
</div>
<div class="summary-card">
<p class="eyebrow">Why it matters</p>
<p>The dashboard can now emit the exact suffixed model IDs that runtime code already understands.</p>
</div>
<div class="summary-card">
<p class="eyebrow">Review cue</p>
<p>Look at the opened model picker: suffixed entries appear as first-class options with pinned-effort badges.</p>
</div>
</div>
</section>
<section class="shot">
<div class="shot-header">
<p class="eyebrow">Targeted evidence</p>
<h2>Codex provider editor model picker</h2>
<p class="muted">
The open selector shows canonical rows plus generated pinned variants such as
<code>gpt-5.3-codex-high</code>, <code>gpt-5.3-codex-xhigh</code>, and
<code>gpt-5.4-xhigh</code>.
</p>
</div>
<img
src="./codex-selector-variants.png"
alt="Codex provider editor with the model selector opened and suffixed effort variants visible."
/>
</section>
</main>
</body>
</html>