mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-10 02:28:32 +00:00
This commit is contained in:
parent
355a0bcf5b
commit
0f6c9b3874
4 changed files with 12 additions and 10 deletions
|
|
@ -7,8 +7,11 @@ import "./app.css"
|
|||
function AppMeta() {
|
||||
return (
|
||||
<>
|
||||
<Title>OpenCode Data</Title>
|
||||
<Meta name="description" content="OpenCode usage data, market share, token cost, and session cost." />
|
||||
<Title>AI Model Usage Rankings | OpenCode Data</Title>
|
||||
<Meta
|
||||
name="description"
|
||||
content="Explore OpenCode Go usage across AI models, including token volume, rankings, market share, token pricing, session cost, cache ratio, and geo breakdowns."
|
||||
/>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -120,11 +120,9 @@ export default function StatsModel() {
|
|||
const [themePreference, setThemePreference] = createSignal<ThemePreference>("system")
|
||||
const modelName = createMemo(() => catalogEntry()?.name ?? stats()?.model ?? modelParam() ?? "Model")
|
||||
const labName = createMemo(() => formatCatalogLabName(catalogEntry()?.lab ?? stats()?.provider ?? labParam()))
|
||||
const modelTitle = createMemo(() => `${modelName()} Data`)
|
||||
const modelTitle = createMemo(() => `${modelName()} Usage, Cost & Rank | OpenCode Data`)
|
||||
const modelDescription = createMemo(() =>
|
||||
stats()
|
||||
? `${modelName()} usage, rank, token mix, cost, geo breakdown, and peer data across OpenCode Go.`
|
||||
: `${modelName()} model facts, limits, and OpenCode Go usage availability.`,
|
||||
`View ${modelName()} OpenCode Go usage data, including token volume, weekly rank, token mix, costs, cache ratio, sessions, geo breakdowns, and peer models.`,
|
||||
)
|
||||
const modelUrl = createMemo(() =>
|
||||
new URL(
|
||||
|
|
|
|||
|
|
@ -69,10 +69,10 @@ export default function StatsLab() {
|
|||
const githubStars = createAsync(() => getGitHubStars())
|
||||
const [themePreference, setThemePreference] = createSignal<ThemePreference>("system")
|
||||
const labName = createMemo(() => lab()?.name ?? formatCatalogLabName(labParam()))
|
||||
const labTitle = createMemo(() => `${labName()} Models`)
|
||||
const labTitle = createMemo(() => `${labName()} AI Model Usage & Rankings | OpenCode Data`)
|
||||
const labDescription = createMemo(
|
||||
() =>
|
||||
`Explore ${labName()} models used in OpenCode, with recent token usage, context windows, release dates, and model-specific data.`,
|
||||
`Compare ${labName()} models used in OpenCode Go, including token usage, model rankings, context windows, release dates, costs, and model-specific data.`,
|
||||
)
|
||||
const labUrl = createMemo(() => new URL(lab()?.id ?? labParam(), statsCanonicalBaseUrl).toString())
|
||||
const updateThemePreference = (preference: ThemePreference) => {
|
||||
|
|
|
|||
|
|
@ -49,8 +49,9 @@ const rangeLabels: Record<UsageRange, string> = {
|
|||
"1M": "1 Month",
|
||||
"2M": "2 Months",
|
||||
}
|
||||
const statsHomeTitle = "OpenCode Data"
|
||||
const statsHomeDescription = "OpenCode usage data, market share, token cost, and session cost."
|
||||
const statsHomeTitle = "AI Model Usage Rankings | OpenCode Data"
|
||||
const statsHomeDescription =
|
||||
"Explore OpenCode Go usage across AI models, including token volume, rankings, market share, token pricing, session cost, cache ratio, and geo breakdowns."
|
||||
const statsHomeFallbackUrl = "https://opencode.ai/data/"
|
||||
const statsUnfurlPath = "banner.jpg"
|
||||
const statsUnfurlAlt = "OpenCode Data wordmark on a dark patterned background"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue