docs(console): end Luna usage promotion (#43351)
This commit is contained in:
@@ -598,17 +598,6 @@ body {
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
[data-bonus] {
|
|
||||||
color: var(--color-text-weak);
|
|
||||||
font-size: 12px;
|
|
||||||
font-weight: 400;
|
|
||||||
line-height: 1;
|
|
||||||
white-space: nowrap;
|
|
||||||
|
|
||||||
@media (max-width: 40rem) {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[data-slot="plot-labels"] {
|
[data-slot="plot-labels"] {
|
||||||
@@ -684,10 +673,6 @@ body {
|
|||||||
stroke: none;
|
stroke: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
[data-bar][data-kind="promo"] {
|
|
||||||
fill: color-mix(in srgb, var(--bar-go) 50%, transparent);
|
|
||||||
}
|
|
||||||
|
|
||||||
[data-val] {
|
[data-val] {
|
||||||
fill: var(--color-text-strong);
|
fill: var(--color-text-strong);
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ function LimitsGraph(props: { href: string }) {
|
|||||||
{ id: "glm-5.2", name: "GLM-5.2", req: 880, d: "100ms" },
|
{ id: "glm-5.2", name: "GLM-5.2", req: 880, d: "100ms" },
|
||||||
{ id: "deepseek-v4-pro", name: "DeepSeek V4 Pro", req: 1050, d: "150ms" },
|
{ id: "deepseek-v4-pro", name: "DeepSeek V4 Pro", req: 1050, d: "150ms" },
|
||||||
{ id: "minimax-m3", name: "MiniMax M3", req: 3200, d: "210ms" },
|
{ id: "minimax-m3", name: "MiniMax M3", req: 3200, d: "210ms" },
|
||||||
{ id: "gpt-5.6-luna", name: "GPT 5.6 Luna", req: 4100, baseReq: 2050, d: "290ms" },
|
{ id: "gpt-5.6-luna", name: "GPT 5.6 Luna", req: 2050, d: "290ms" },
|
||||||
{ id: "qwen3.7-plus", name: "Qwen3.7 Plus", req: 4300, d: "300ms" },
|
{ id: "qwen3.7-plus", name: "Qwen3.7 Plus", req: 4300, d: "300ms" },
|
||||||
{ id: "hy3", name: "Hy3", req: 4300, d: "320ms" },
|
{ id: "hy3", name: "Hy3", req: 4300, d: "320ms" },
|
||||||
{ id: "deepseek-v4-flash", name: "DeepSeek V4 Flash", req: 7600, d: "330ms" },
|
{ id: "deepseek-v4-flash", name: "DeepSeek V4 Flash", req: 7600, d: "330ms" },
|
||||||
@@ -153,23 +153,12 @@ function LimitsGraph(props: { href: string }) {
|
|||||||
<rect
|
<rect
|
||||||
x={left}
|
x={left}
|
||||||
y={gy(i()) - bh / 2}
|
y={gy(i()) - bh / 2}
|
||||||
width={Math.max(0, x(ratio(m.baseReq ?? m.req)) - left)}
|
width={Math.max(0, x(ratio(m.req)) - left)}
|
||||||
height={bh}
|
height={bh}
|
||||||
data-bar
|
data-bar
|
||||||
data-kind="go"
|
data-kind="go"
|
||||||
data-model={m.id}
|
data-model={m.id}
|
||||||
/>
|
/>
|
||||||
{m.baseReq && (
|
|
||||||
<rect
|
|
||||||
x={x(ratio(m.baseReq)) + 2}
|
|
||||||
y={gy(i()) - bh / 2}
|
|
||||||
width={Math.max(0, x(ratio(m.req)) - x(ratio(m.baseReq)) - 2)}
|
|
||||||
height={bh}
|
|
||||||
data-bar
|
|
||||||
data-kind="promo"
|
|
||||||
data-model={m.id}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
</g>
|
</g>
|
||||||
)}
|
)}
|
||||||
</For>
|
</For>
|
||||||
@@ -204,7 +193,6 @@ function LimitsGraph(props: { href: string }) {
|
|||||||
>
|
>
|
||||||
<span data-value>{m.req.toLocaleString()}</span>
|
<span data-value>{m.req.toLocaleString()}</span>
|
||||||
<span data-name>{m.name}</span>
|
<span data-name>{m.name}</span>
|
||||||
{m.baseReq && <span data-bonus>2x usage</span>}
|
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
</For>
|
</For>
|
||||||
|
|||||||
Reference in New Issue
Block a user