import React from "react" import { AbsoluteFill, Easing, Img, interpolate, staticFile, useCurrentFrame } from "remotion" const c = { white: "#ffffff", dim: "rgba(255,255,255,0.74)", } const MONO = '"IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace' // verified: OpenCode Go, week of Jun 22-28, 2026 (2026-W26) // 19,642,742,937,105 tokens / 173,651,197 requests = 113,116 tokens/request const AVG = 113116 const K = Math.round(AVG / 1000) // 113 const nf = new Intl.NumberFormat("en-US") function DataWordmark({ height = 30 }: { height?: number }) { return ( ) } export function NovelTokens() { const frame = useCurrentFrame() const k = Math.round( K * interpolate(frame, [18, 92], [0, 1], { extrapolateLeft: "clamp", extrapolateRight: "clamp", easing: Easing.out(Easing.cubic), }), ) const zoom = interpolate(frame, [0, 150], [1.06, 1.12], { extrapolateRight: "clamp", easing: Easing.inOut(Easing.quad), }) return ( {/* legibility scrims */}
{/* header */}
JUN 22–28, 2026
{/* bottom block */}
OPENCODE GO · LAST WEEK
{k}K
tokens per request
{nf.format(AVG)} tokens / request · last week
opencode.ai/data
) }