wip: zen
This commit is contained in:
@@ -258,7 +258,7 @@ export const dict = {
|
|||||||
"go.cta.price": "$10/month",
|
"go.cta.price": "$10/month",
|
||||||
"go.pricing.body": "Use with any agent. Top up credit if needed. Cancel any time.",
|
"go.pricing.body": "Use with any agent. Top up credit if needed. Cancel any time.",
|
||||||
"go.graph.free": "Free",
|
"go.graph.free": "Free",
|
||||||
"go.graph.freePill": "Big Pickle and promotional",
|
"go.graph.freePill": "Big Pickle and free models",
|
||||||
"go.graph.go": "Go",
|
"go.graph.go": "Go",
|
||||||
"go.graph.label": "Requests per 5 hour",
|
"go.graph.label": "Requests per 5 hour",
|
||||||
"go.graph.usageLimits": "Usage limits",
|
"go.graph.usageLimits": "Usage limits",
|
||||||
|
|||||||
@@ -169,8 +169,8 @@ function LimitsGraph(props: { href: string }) {
|
|||||||
|
|
||||||
<div data-slot="pills" aria-hidden="true">
|
<div data-slot="pills" aria-hidden="true">
|
||||||
<span data-item data-kind="free" style={{ "--x": px(x(1)), "--y": py(fy), "--d": "0ms" } as any}>
|
<span data-item data-kind="free" style={{ "--x": px(x(1)), "--y": py(fy), "--d": "0ms" } as any}>
|
||||||
<span data-name>{i18n.t("go.graph.freePill")}</span>
|
|
||||||
<span data-value>{free.toLocaleString()}</span>
|
<span data-value>{free.toLocaleString()}</span>
|
||||||
|
<span data-name>{i18n.t("go.graph.freePill")}</span>
|
||||||
</span>
|
</span>
|
||||||
<For each={models}>
|
<For each={models}>
|
||||||
{(m, i) => (
|
{(m, i) => (
|
||||||
@@ -180,8 +180,8 @@ function LimitsGraph(props: { href: string }) {
|
|||||||
data-model={m.id}
|
data-model={m.id}
|
||||||
style={{ "--x": px(x(ratio(m.req))), "--y": py(gy(i())), "--d": m.d } as any}
|
style={{ "--x": px(x(ratio(m.req))), "--y": py(gy(i())), "--d": m.d } as any}
|
||||||
>
|
>
|
||||||
<span data-name>{m.name}</span>
|
|
||||||
<span data-value>{m.req.toLocaleString()}</span>
|
<span data-value>{m.req.toLocaleString()}</span>
|
||||||
|
<span data-name>{m.name}</span>
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
</For>
|
</For>
|
||||||
|
|||||||
Reference in New Issue
Block a user