zen: update usage graph on landing page

This commit is contained in:
Frank 2026-03-11 00:05:08 -04:00
parent f89696509e
commit fac23a1afc

View File

@ -62,7 +62,7 @@ function LimitsGraph(props: { href: string }) {
const rmax = Math.max(1, ...models.map((m) => ratio(m.req)))
const log = (n: number) => Math.log10(Math.max(n, 1))
const base = 24
const p = 2.2
const p = 1.8
const x = (r: number) => left + base + Math.pow(log(r) / log(rmax), p) * (plot - base)
const start = (x(1) / w) * 100