nbroad commited on
Commit
bdec481
·
verified ·
1 Parent(s): 499b514

Upload folder using huggingface_hub

Browse files
Dockerfile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
2
+ # you will also find guides on how best to write your Dockerfile
3
+
4
+ FROM python:3.11
5
+
6
+ RUN useradd -m -u 1000 user
7
+ USER user
8
+ ENV PATH="/home/user/.local/bin:$PATH"
9
+
10
+ WORKDIR /app
11
+
12
+ COPY --chown=user ./requirements.txt requirements.txt
13
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
+
15
+ COPY --chown=user . /app
16
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
17
+
README.md CHANGED
@@ -1,12 +1,82 @@
1
  ---
2
- title: Compare Openrouter Providers
3
- emoji: 👀
4
- colorFrom: green
5
- colorTo: red
6
- sdk: gradio
7
- sdk_version: 6.2.0
8
- app_file: app.py
9
  pinned: false
 
10
  ---
11
 
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: OpenRouter Provider Dashboard
3
+ emoji: 📊
4
+ colorFrom: blue
5
+ colorTo: purple
6
+ sdk: docker
 
 
7
  pinned: false
8
+ license: mit
9
  ---
10
 
11
+ # OpenRouter Provider Dashboard
12
+
13
+ A dashboard to compare token usage across different OpenRouter providers.
14
+
15
+ ## Features
16
+
17
+ - **Interactive Charts**: Visualize token usage over time with interactive line charts
18
+ - **Provider Comparison**: Compare multiple providers side-by-side
19
+ - **Model Analysis**: Deep dive into models and their distribution across providers
20
+ - **Time Range Filtering**: Filter data by time ranges (all time, 30 days, 7 days)
21
+ - **Dynamic Summing**: Adjust the number of days to sum over with a slider
22
+
23
+ ## Dashboard Sections
24
+
25
+ **Overview Cards**: Click on provider cards to select/deselect them for comparison
26
+
27
+ **Daily Token Usage Over Time**:
28
+ - Line chart showing daily token usage
29
+ - Filter by: All time, Last 30 days, Last 7 days
30
+ - Only shows selected providers
31
+
32
+ **Average Daily Tokens by Provider**:
33
+ - Bar chart showing average daily token usage
34
+
35
+ **Deep Dive: Models & Providers**:
36
+ - View models by provider or providers by model
37
+ - Interactive selection and filtering
38
+
39
+ **Model Distribution Across Providers**:
40
+ - Shows which providers serve each model
41
+ - Search functionality to find specific models
42
+ - Cumulative token counts
43
+
44
+ ## Data
45
+
46
+ The dashboard loads data from `data/full_data.json`. Make sure this file exists and contains provider data in the expected format.
47
+
48
+ ## Local Development
49
+
50
+ To run locally:
51
+
52
+ ```bash
53
+ pip install -r requirements.txt
54
+ python app.py
55
+ ```
56
+
57
+ The dashboard will be available at `http://localhost:7860`
58
+
59
+ ## Data Format
60
+
61
+ Each provider's data contains daily token counts per model:
62
+
63
+ ```json
64
+ {
65
+ "provider": "together",
66
+ "data": [
67
+ {
68
+ "x": "2025-10-01 00:00:00",
69
+ "ys": {
70
+ "model-name-1": 12345678,
71
+ "model-name-2": 98765432,
72
+ "Others": 11111111
73
+ }
74
+ }
75
+ ]
76
+ }
77
+ ```
78
+
79
+ ## License
80
+
81
+ MIT License
82
+
app.py ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ from pathlib import Path
3
+ from fastapi import FastAPI, Request
4
+ from fastapi.responses import HTMLResponse, FileResponse
5
+ from fastapi.staticfiles import StaticFiles
6
+ from fastapi.templating import Jinja2Templates
7
+
8
+ app = FastAPI(title="OpenRouter Provider Dashboard")
9
+
10
+ # Get the directory where this file is located
11
+ BASE_DIR = Path(__file__).parent
12
+
13
+ # Set up templates directory
14
+ templates = Jinja2Templates(directory=str(BASE_DIR / "templates"))
15
+
16
+ # Mount static files for data directory
17
+ data_dir = BASE_DIR / "data"
18
+ if data_dir.exists():
19
+ app.mount("/data", StaticFiles(directory=str(data_dir)), name="data")
20
+
21
+ @app.get("/", response_class=HTMLResponse)
22
+ async def dashboard(request: Request):
23
+ """Serve the main dashboard page"""
24
+ return templates.TemplateResponse("dashboard.html", {"request": request})
25
+
26
+ @app.get("/health")
27
+ async def health():
28
+ """Health check endpoint"""
29
+ return {"status": "ok"}
30
+
31
+ if __name__ == "__main__":
32
+ import uvicorn
33
+ uvicorn.run(app, host="0.0.0.0", port=7860)
34
+
data/.full_data.json.swp ADDED
Binary file (24.6 kB). View file
 
data/full_data.json ADDED
The diff for this file is too large to render. See raw diff
 
data/providers/anthropic.json ADDED
@@ -0,0 +1,1358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "provider": "anthropic",
3
+ "url": "https://openrouter.ai/provider/anthropic",
4
+ "data": [
5
+ {
6
+ "x": "2025-10-08 00:00:00",
7
+ "ys": {
8
+ "anthropic/claude-4.5-sonnet-20250929": 28332408633,
9
+ "anthropic/claude-4-sonnet-20250522": 9824606469,
10
+ "anthropic/claude-3-7-sonnet-20250219": 2111043094,
11
+ "anthropic/claude-3.5-sonnet": 1270831569,
12
+ "anthropic/claude-3-5-haiku": 982375069,
13
+ "anthropic/claude-4.1-opus-20250805": 620699160,
14
+ "anthropic/claude-3-haiku": 514382556,
15
+ "anthropic/claude-4-opus-20250522": 129989869,
16
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 98780150,
17
+ "Others": 114350534
18
+ }
19
+ },
20
+ {
21
+ "x": "2025-10-09 00:00:00",
22
+ "ys": {
23
+ "anthropic/claude-4.5-sonnet-20250929": 29533916234,
24
+ "anthropic/claude-4-sonnet-20250522": 10647135870,
25
+ "anthropic/claude-3-7-sonnet-20250219": 1857652805,
26
+ "anthropic/claude-3.5-sonnet": 1214351780,
27
+ "anthropic/claude-3-5-haiku": 939235566,
28
+ "anthropic/claude-4.1-opus-20250805": 556237017,
29
+ "anthropic/claude-3-haiku": 426844969,
30
+ "anthropic/claude-4-opus-20250522": 163541551,
31
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 100713302,
32
+ "Others": 97776717
33
+ }
34
+ },
35
+ {
36
+ "x": "2025-10-10 00:00:00",
37
+ "ys": {
38
+ "anthropic/claude-4.5-sonnet-20250929": 27177347098,
39
+ "anthropic/claude-4-sonnet-20250522": 11720336720,
40
+ "anthropic/claude-3-7-sonnet-20250219": 1715235746,
41
+ "anthropic/claude-3.5-sonnet": 1098874010,
42
+ "anthropic/claude-3-5-haiku": 1015752141,
43
+ "anthropic/claude-4.1-opus-20250805": 466241160,
44
+ "anthropic/claude-3-haiku": 444860247,
45
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 126277438,
46
+ "anthropic/claude-4-opus-20250522": 89737687,
47
+ "Others": 78798085
48
+ }
49
+ },
50
+ {
51
+ "x": "2025-10-11 00:00:00",
52
+ "ys": {
53
+ "anthropic/claude-4.5-sonnet-20250929": 20600404769,
54
+ "anthropic/claude-4-sonnet-20250522": 8312227785,
55
+ "anthropic/claude-3-7-sonnet-20250219": 1626681184,
56
+ "anthropic/claude-3.5-sonnet": 687102075,
57
+ "anthropic/claude-3-5-haiku": 503506506,
58
+ "anthropic/claude-3-haiku": 369117488,
59
+ "anthropic/claude-4.1-opus-20250805": 340484230,
60
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 112149577,
61
+ "anthropic/claude-3.5-sonnet-20240620": 56343100,
62
+ "Others": 80895116
63
+ }
64
+ },
65
+ {
66
+ "x": "2025-10-12 00:00:00",
67
+ "ys": {
68
+ "anthropic/claude-4.5-sonnet-20250929": 21976168361,
69
+ "anthropic/claude-4-sonnet-20250522": 7342848583,
70
+ "anthropic/claude-3-7-sonnet-20250219": 1142330199,
71
+ "anthropic/claude-3.5-sonnet": 593910024,
72
+ "anthropic/claude-3-5-haiku": 522532521,
73
+ "anthropic/claude-4.1-opus-20250805": 306225154,
74
+ "anthropic/claude-3-haiku": 299193265,
75
+ "anthropic/claude-4-opus-20250522": 63738529,
76
+ "anthropic/claude-3.5-sonnet-20240620": 46282477,
77
+ "Others": 73302375
78
+ }
79
+ },
80
+ {
81
+ "x": "2025-10-13 00:00:00",
82
+ "ys": {
83
+ "anthropic/claude-4.5-sonnet-20250929": 35037403489,
84
+ "anthropic/claude-4-sonnet-20250522": 12092453038,
85
+ "anthropic/claude-3-7-sonnet-20250219": 2151390769,
86
+ "anthropic/claude-3-5-haiku": 1257483099,
87
+ "anthropic/claude-3.5-sonnet": 1238378889,
88
+ "anthropic/claude-4.1-opus-20250805": 876718251,
89
+ "anthropic/claude-3-haiku": 465146276,
90
+ "anthropic/claude-4-opus-20250522": 225366980,
91
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 89815205,
92
+ "Others": 58832272
93
+ }
94
+ },
95
+ {
96
+ "x": "2025-10-14 00:00:00",
97
+ "ys": {
98
+ "anthropic/claude-4.5-sonnet-20250929": 35460151596,
99
+ "anthropic/claude-4-sonnet-20250522": 14528964090,
100
+ "anthropic/claude-3-7-sonnet-20250219": 2977212022,
101
+ "anthropic/claude-3-5-haiku": 1355329669,
102
+ "anthropic/claude-3.5-sonnet": 1177314158,
103
+ "anthropic/claude-4.1-opus-20250805": 693775837,
104
+ "anthropic/claude-3-haiku": 619501630,
105
+ "anthropic/claude-4-opus-20250522": 269955558,
106
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 175941631,
107
+ "Others": 66432654
108
+ }
109
+ },
110
+ {
111
+ "x": "2025-10-15 00:00:00",
112
+ "ys": {
113
+ "anthropic/claude-4.5-sonnet-20250929": 34334112210,
114
+ "anthropic/claude-4-sonnet-20250522": 9214419004,
115
+ "anthropic/claude-3-7-sonnet-20250219": 3283751941,
116
+ "anthropic/claude-3-5-haiku": 1462641905,
117
+ "anthropic/claude-4.5-haiku-20251001": 1303912692,
118
+ "anthropic/claude-3.5-sonnet": 1001560706,
119
+ "anthropic/claude-4.1-opus-20250805": 736639453,
120
+ "anthropic/claude-3-haiku": 718964923,
121
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 178543724,
122
+ "Others": 232586017
123
+ }
124
+ },
125
+ {
126
+ "x": "2025-10-16 00:00:00",
127
+ "ys": {
128
+ "anthropic/claude-4.5-sonnet-20250929": 32741535042,
129
+ "anthropic/claude-4-sonnet-20250522": 11327939670,
130
+ "anthropic/claude-4.5-haiku-20251001": 5114018715,
131
+ "anthropic/claude-3-7-sonnet-20250219": 2755083313,
132
+ "anthropic/claude-3-5-haiku": 1721719496,
133
+ "anthropic/claude-3.5-sonnet": 874872776,
134
+ "anthropic/claude-4.1-opus-20250805": 676232581,
135
+ "anthropic/claude-3-haiku": 597763437,
136
+ "anthropic/claude-4-opus-20250522": 221035849,
137
+ "Others": 311950459
138
+ }
139
+ },
140
+ {
141
+ "x": "2025-10-17 00:00:00",
142
+ "ys": {
143
+ "anthropic/claude-4.5-sonnet-20250929": 33355670677,
144
+ "anthropic/claude-4-sonnet-20250522": 7368222560,
145
+ "anthropic/claude-4.5-haiku-20251001": 5463866627,
146
+ "anthropic/claude-3-7-sonnet-20250219": 2538121004,
147
+ "anthropic/claude-3-5-haiku": 1708584151,
148
+ "anthropic/claude-3.5-sonnet": 1014502184,
149
+ "anthropic/claude-3-haiku": 409630175,
150
+ "anthropic/claude-4.1-opus-20250805": 339735075,
151
+ "anthropic/claude-4-opus-20250522": 218156070,
152
+ "Others": 211977416
153
+ }
154
+ },
155
+ {
156
+ "x": "2025-10-18 00:00:00",
157
+ "ys": {
158
+ "anthropic/claude-4.5-sonnet-20250929": 29515170465,
159
+ "anthropic/claude-4.5-haiku-20251001": 4838044867,
160
+ "anthropic/claude-4-sonnet-20250522": 4819444560,
161
+ "anthropic/claude-3-5-haiku": 925294797,
162
+ "anthropic/claude-3-7-sonnet-20250219": 894668138,
163
+ "anthropic/claude-3.5-sonnet": 591328889,
164
+ "anthropic/claude-4.1-opus-20250805": 396705279,
165
+ "anthropic/claude-3-haiku": 326656485,
166
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 108732788,
167
+ "Others": 81691221
168
+ }
169
+ },
170
+ {
171
+ "x": "2025-10-19 00:00:00",
172
+ "ys": {
173
+ "anthropic/claude-4.5-sonnet-20250929": 29274688177,
174
+ "anthropic/claude-4-sonnet-20250522": 5944705315,
175
+ "anthropic/claude-4.5-haiku-20251001": 3642846328,
176
+ "anthropic/claude-3-7-sonnet-20250219": 930506777,
177
+ "anthropic/claude-3-5-haiku": 765875558,
178
+ "anthropic/claude-3.5-sonnet": 436306100,
179
+ "anthropic/claude-3-haiku": 310877617,
180
+ "anthropic/claude-4.1-opus-20250805": 298136208,
181
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 65185803,
182
+ "Others": 107825361
183
+ }
184
+ },
185
+ {
186
+ "x": "2025-10-20 00:00:00",
187
+ "ys": {
188
+ "anthropic/claude-4.5-sonnet-20250929": 32726940532,
189
+ "anthropic/claude-4-sonnet-20250522": 6563080541,
190
+ "anthropic/claude-4.5-haiku-20251001": 6258052128,
191
+ "anthropic/claude-3-5-haiku": 1487796557,
192
+ "anthropic/claude-3-7-sonnet-20250219": 1071121150,
193
+ "anthropic/claude-3.5-sonnet": 958224222,
194
+ "anthropic/claude-4.1-opus-20250805": 453653714,
195
+ "anthropic/claude-3-haiku": 436766429,
196
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 168536693,
197
+ "Others": 170419786
198
+ }
199
+ },
200
+ {
201
+ "x": "2025-10-21 00:00:00",
202
+ "ys": {
203
+ "anthropic/claude-4.5-sonnet-20250929": 36287967978,
204
+ "anthropic/claude-4-sonnet-20250522": 7820657220,
205
+ "anthropic/claude-4.5-haiku-20251001": 4177588946,
206
+ "anthropic/claude-3-5-haiku": 1861279661,
207
+ "anthropic/claude-3-7-sonnet-20250219": 1001766657,
208
+ "anthropic/claude-3.5-sonnet": 999062887,
209
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 648246635,
210
+ "anthropic/claude-3-haiku": 477327349,
211
+ "anthropic/claude-4.1-opus-20250805": 408800552,
212
+ "Others": 231351491
213
+ }
214
+ },
215
+ {
216
+ "x": "2025-10-22 00:00:00",
217
+ "ys": {
218
+ "anthropic/claude-4.5-sonnet-20250929": 36936917834,
219
+ "anthropic/claude-4-sonnet-20250522": 8248793236,
220
+ "anthropic/claude-4.5-haiku-20251001": 4175958775,
221
+ "anthropic/claude-3-5-haiku": 1782429335,
222
+ "anthropic/claude-3.5-sonnet": 1048009858,
223
+ "anthropic/claude-3-7-sonnet-20250219": 925337728,
224
+ "anthropic/claude-4.1-opus-20250805": 421643643,
225
+ "anthropic/claude-3-haiku": 412422412,
226
+ "anthropic/claude-4-opus-20250522": 194976043,
227
+ "Others": 120795519
228
+ }
229
+ },
230
+ {
231
+ "x": "2025-10-23 00:00:00",
232
+ "ys": {
233
+ "anthropic/claude-4.5-sonnet-20250929": 36190863400,
234
+ "anthropic/claude-4-sonnet-20250522": 8088515393,
235
+ "anthropic/claude-4.5-haiku-20251001": 3308234401,
236
+ "anthropic/claude-3-5-haiku": 1458459291,
237
+ "anthropic/claude-3-7-sonnet-20250219": 1077893445,
238
+ "anthropic/claude-3.5-sonnet": 902554632,
239
+ "anthropic/claude-4.1-opus-20250805": 430774566,
240
+ "anthropic/claude-3-haiku": 424209243,
241
+ "anthropic/claude-4-opus-20250522": 84914335,
242
+ "Others": 140706572
243
+ }
244
+ },
245
+ {
246
+ "x": "2025-10-24 00:00:00",
247
+ "ys": {
248
+ "anthropic/claude-4.5-sonnet-20250929": 34662027055,
249
+ "anthropic/claude-4.5-haiku-20251001": 12610198635,
250
+ "anthropic/claude-4-sonnet-20250522": 7395530796,
251
+ "anthropic/claude-3-5-haiku": 1301866040,
252
+ "anthropic/claude-3-7-sonnet-20250219": 1235232757,
253
+ "anthropic/claude-3.5-sonnet": 719306097,
254
+ "anthropic/claude-4.1-opus-20250805": 398238027,
255
+ "anthropic/claude-3-haiku": 356984606,
256
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 89908797,
257
+ "Others": 86730562
258
+ }
259
+ },
260
+ {
261
+ "x": "2025-10-25 00:00:00",
262
+ "ys": {
263
+ "anthropic/claude-4.5-sonnet-20250929": 23569840228,
264
+ "anthropic/claude-4.5-haiku-20251001": 11615028723,
265
+ "anthropic/claude-4-sonnet-20250522": 4450218405,
266
+ "anthropic/claude-3-7-sonnet-20250219": 1030800407,
267
+ "anthropic/claude-3-5-haiku": 708347500,
268
+ "anthropic/claude-3.5-sonnet": 371385746,
269
+ "anthropic/claude-3-haiku": 271150401,
270
+ "anthropic/claude-4.1-opus-20250805": 267196881,
271
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 51905833,
272
+ "Others": 83350581
273
+ }
274
+ },
275
+ {
276
+ "x": "2025-10-26 00:00:00",
277
+ "ys": {
278
+ "anthropic/claude-4.5-sonnet-20250929": 24055108160,
279
+ "anthropic/claude-4-sonnet-20250522": 5409649744,
280
+ "anthropic/claude-4.5-haiku-20251001": 3380003074,
281
+ "anthropic/claude-3-7-sonnet-20250219": 918388214,
282
+ "anthropic/claude-3-5-haiku": 715560962,
283
+ "anthropic/claude-3.5-sonnet": 434947962,
284
+ "anthropic/claude-4.1-opus-20250805": 312077368,
285
+ "anthropic/claude-3-haiku": 274201067,
286
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 43848854,
287
+ "Others": 43354454
288
+ }
289
+ },
290
+ {
291
+ "x": "2025-10-27 00:00:00",
292
+ "ys": {
293
+ "anthropic/claude-4.5-sonnet-20250929": 35352289899,
294
+ "anthropic/claude-4-sonnet-20250522": 11342030378,
295
+ "anthropic/claude-4.5-haiku-20251001": 3091713261,
296
+ "anthropic/claude-3-5-haiku": 1292018176,
297
+ "anthropic/claude-3-7-sonnet-20250219": 1078688748,
298
+ "anthropic/claude-3.5-sonnet": 808133441,
299
+ "anthropic/claude-3-haiku": 509970455,
300
+ "anthropic/claude-4.1-opus-20250805": 281823308,
301
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 83188930,
302
+ "Others": 67191074
303
+ }
304
+ },
305
+ {
306
+ "x": "2025-10-28 00:00:00",
307
+ "ys": {
308
+ "anthropic/claude-4.5-sonnet-20250929": 35831803011,
309
+ "anthropic/claude-4-sonnet-20250522": 7639734710,
310
+ "anthropic/claude-4.5-haiku-20251001": 3183946930,
311
+ "anthropic/claude-3-5-haiku": 1356988384,
312
+ "anthropic/claude-3-7-sonnet-20250219": 1081314828,
313
+ "anthropic/claude-3.5-sonnet": 654688385,
314
+ "anthropic/claude-3-haiku": 520975349,
315
+ "anthropic/claude-4.1-opus-20250805": 329587148,
316
+ "anthropic/claude-4-opus-20250522": 106828374,
317
+ "Others": 121493581
318
+ }
319
+ },
320
+ {
321
+ "x": "2025-10-29 00:00:00",
322
+ "ys": {
323
+ "anthropic/claude-4.5-sonnet-20250929": 35837934408,
324
+ "anthropic/claude-4-sonnet-20250522": 8639724980,
325
+ "anthropic/claude-4.5-haiku-20251001": 3713157502,
326
+ "anthropic/claude-3-5-haiku": 1255315632,
327
+ "anthropic/claude-3-7-sonnet-20250219": 1176099601,
328
+ "anthropic/claude-3-haiku": 581911396,
329
+ "anthropic/claude-4.1-opus-20250805": 518727776,
330
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 82348898,
331
+ "anthropic/claude-4-opus-20250522": 78647010,
332
+ "Others": 27865851
333
+ }
334
+ },
335
+ {
336
+ "x": "2025-10-30 00:00:00",
337
+ "ys": {
338
+ "anthropic/claude-4.5-sonnet-20250929": 34773924564,
339
+ "anthropic/claude-4-sonnet-20250522": 9542550000,
340
+ "anthropic/claude-4.5-haiku-20251001": 3742160785,
341
+ "anthropic/claude-3-5-haiku": 1464829214,
342
+ "anthropic/claude-3-7-sonnet-20250219": 1193110080,
343
+ "anthropic/claude-3-haiku": 619657688,
344
+ "anthropic/claude-4.1-opus-20250805": 512323482,
345
+ "anthropic/claude-4-opus-20250522": 142038241,
346
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 89035642,
347
+ "Others": 13856839
348
+ }
349
+ },
350
+ {
351
+ "x": "2025-10-31 00:00:00",
352
+ "ys": {
353
+ "anthropic/claude-4.5-sonnet-20250929": 31250521911,
354
+ "anthropic/claude-4-sonnet-20250522": 9077392820,
355
+ "anthropic/claude-4.5-haiku-20251001": 3425599429,
356
+ "anthropic/claude-3-5-haiku": 1876716644,
357
+ "anthropic/claude-3-7-sonnet-20250219": 1160042381,
358
+ "anthropic/claude-3-haiku": 363197663,
359
+ "anthropic/claude-4.1-opus-20250805": 336198068,
360
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 154731092,
361
+ "anthropic/claude-4-opus-20250522": 115318059,
362
+ "Others": 26300525
363
+ }
364
+ },
365
+ {
366
+ "x": "2025-11-01 00:00:00",
367
+ "ys": {
368
+ "anthropic/claude-4.5-sonnet-20250929": 21786241087,
369
+ "anthropic/claude-4-sonnet-20250522": 4722807567,
370
+ "anthropic/claude-4.5-haiku-20251001": 2163279625,
371
+ "anthropic/claude-3-5-haiku": 1228943821,
372
+ "anthropic/claude-3-7-sonnet-20250219": 1076192134,
373
+ "anthropic/claude-3-haiku": 360703951,
374
+ "anthropic/claude-4.1-opus-20250805": 289325190,
375
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 231475755,
376
+ "anthropic/claude-4-opus-20250522": 29606027,
377
+ "Others": 12198155
378
+ }
379
+ },
380
+ {
381
+ "x": "2025-11-02 00:00:00",
382
+ "ys": {
383
+ "anthropic/claude-4.5-sonnet-20250929": 22719477304,
384
+ "anthropic/claude-4-sonnet-20250522": 4559871741,
385
+ "anthropic/claude-4.5-haiku-20251001": 2077472653,
386
+ "anthropic/claude-3-5-haiku": 1119561674,
387
+ "anthropic/claude-3-7-sonnet-20250219": 1066538045,
388
+ "anthropic/claude-3-haiku": 384723413,
389
+ "anthropic/claude-4.1-opus-20250805": 296165754,
390
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 42948870,
391
+ "anthropic/claude-4-opus-20250522": 41967443,
392
+ "Others": 10722933
393
+ }
394
+ },
395
+ {
396
+ "x": "2025-11-03 00:00:00",
397
+ "ys": {
398
+ "anthropic/claude-4.5-sonnet-20250929": 30830176164,
399
+ "anthropic/claude-4-sonnet-20250522": 7125913985,
400
+ "anthropic/claude-4.5-haiku-20251001": 2668372272,
401
+ "anthropic/claude-3-5-haiku": 2050238039,
402
+ "anthropic/claude-3-7-sonnet-20250219": 1132160914,
403
+ "anthropic/claude-4.1-opus-20250805": 558618343,
404
+ "anthropic/claude-3-haiku": 516043219,
405
+ "anthropic/claude-4-opus-20250522": 106238783,
406
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 69496421,
407
+ "Others": 50238606
408
+ }
409
+ },
410
+ {
411
+ "x": "2025-11-04 00:00:00",
412
+ "ys": {
413
+ "anthropic/claude-4.5-sonnet-20250929": 32971792711,
414
+ "anthropic/claude-4-sonnet-20250522": 9337497567,
415
+ "anthropic/claude-4.5-haiku-20251001": 2950881870,
416
+ "anthropic/claude-3-5-haiku": 2150273250,
417
+ "anthropic/claude-3-7-sonnet-20250219": 1740102119,
418
+ "anthropic/claude-3-haiku": 613481005,
419
+ "anthropic/claude-4.1-opus-20250805": 477182097,
420
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 196178024,
421
+ "anthropic/claude-4-opus-20250522": 98392715,
422
+ "Others": 18159556
423
+ }
424
+ },
425
+ {
426
+ "x": "2025-11-05 00:00:00",
427
+ "ys": {
428
+ "anthropic/claude-4.5-sonnet-20250929": 32887082205,
429
+ "anthropic/claude-4-sonnet-20250522": 9071434081,
430
+ "anthropic/claude-4.5-haiku-20251001": 2824539353,
431
+ "anthropic/claude-3-5-haiku": 2124397664,
432
+ "anthropic/claude-3-7-sonnet-20250219": 872780217,
433
+ "anthropic/claude-4.1-opus-20250805": 545157025,
434
+ "anthropic/claude-3-haiku": 538114573,
435
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 238428017,
436
+ "anthropic/claude-4-opus-20250522": 79721338,
437
+ "Others": 18252660
438
+ }
439
+ },
440
+ {
441
+ "x": "2025-11-06 00:00:00",
442
+ "ys": {
443
+ "anthropic/claude-4.5-sonnet-20250929": 38607541423,
444
+ "anthropic/claude-4-sonnet-20250522": 8672098203,
445
+ "anthropic/claude-4.5-haiku-20251001": 2808458781,
446
+ "anthropic/claude-3-5-haiku": 1855754543,
447
+ "anthropic/claude-3-7-sonnet-20250219": 1422933918,
448
+ "anthropic/claude-3-haiku": 526864831,
449
+ "anthropic/claude-4.1-opus-20250805": 462448478,
450
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 85732008,
451
+ "anthropic/claude-4-opus-20250522": 78895961,
452
+ "Others": 10262166
453
+ }
454
+ },
455
+ {
456
+ "x": "2025-11-07 00:00:00",
457
+ "ys": {
458
+ "anthropic/claude-4.5-sonnet-20250929": 55511564153,
459
+ "anthropic/claude-4-sonnet-20250522": 7295186992,
460
+ "anthropic/claude-4.5-haiku-20251001": 4486739606,
461
+ "anthropic/claude-3-5-haiku": 1691420026,
462
+ "anthropic/claude-3-7-sonnet-20250219": 1195481512,
463
+ "anthropic/claude-4.1-opus-20250805": 458825125,
464
+ "anthropic/claude-3-haiku": 428564474,
465
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 41178557,
466
+ "anthropic/claude-4-opus-20250522": 37544298,
467
+ "Others": 10644866
468
+ }
469
+ },
470
+ {
471
+ "x": "2025-11-08 00:00:00",
472
+ "ys": {
473
+ "anthropic/claude-4.5-sonnet-20250929": 52686123376,
474
+ "anthropic/claude-4-sonnet-20250522": 5458292174,
475
+ "anthropic/claude-4.5-haiku-20251001": 3323592478,
476
+ "anthropic/claude-3-5-haiku": 1182556281,
477
+ "anthropic/claude-3-7-sonnet-20250219": 1090153346,
478
+ "anthropic/claude-4.1-opus-20250805": 387271485,
479
+ "anthropic/claude-3-haiku": 343352988,
480
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 59601973,
481
+ "anthropic/claude-4-opus-20250522": 34172417,
482
+ "Others": 8897438
483
+ }
484
+ },
485
+ {
486
+ "x": "2025-11-09 00:00:00",
487
+ "ys": {
488
+ "anthropic/claude-4.5-sonnet-20250929": 26955912274,
489
+ "anthropic/claude-4-sonnet-20250522": 6106050129,
490
+ "anthropic/claude-4.5-haiku-20251001": 2615661882,
491
+ "anthropic/claude-3-5-haiku": 1155415264,
492
+ "anthropic/claude-3-7-sonnet-20250219": 1073876438,
493
+ "anthropic/claude-4.1-opus-20250805": 345303209,
494
+ "anthropic/claude-3-haiku": 341570602,
495
+ "anthropic/claude-4-opus-20250522": 72994519,
496
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 37817523,
497
+ "Others": 9664436
498
+ }
499
+ },
500
+ {
501
+ "x": "2025-11-10 00:00:00",
502
+ "ys": {
503
+ "anthropic/claude-4.5-sonnet-20250929": 32939907033,
504
+ "anthropic/claude-4-sonnet-20250522": 6960308047,
505
+ "anthropic/claude-4.5-haiku-20251001": 3203141014,
506
+ "anthropic/claude-3-5-haiku": 2001300637,
507
+ "anthropic/claude-3-7-sonnet-20250219": 1352867843,
508
+ "anthropic/claude-4.1-opus-20250805": 720672165,
509
+ "anthropic/claude-3-haiku": 706708838,
510
+ "anthropic/claude-4-opus-20250522": 87041176,
511
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 42842928,
512
+ "Others": 19860553
513
+ }
514
+ },
515
+ {
516
+ "x": "2025-11-11 00:00:00",
517
+ "ys": {
518
+ "anthropic/claude-4.5-sonnet-20250929": 35494176254,
519
+ "anthropic/claude-4-sonnet-20250522": 7189449012,
520
+ "anthropic/claude-4.5-haiku-20251001": 3817483472,
521
+ "anthropic/claude-3-5-haiku": 2223391767,
522
+ "anthropic/claude-3-7-sonnet-20250219": 1110811534,
523
+ "anthropic/claude-4.1-opus-20250805": 752493471,
524
+ "anthropic/claude-3-haiku": 644765835,
525
+ "anthropic/claude-4-opus-20250522": 83373756,
526
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 78718701,
527
+ "Others": 19195667
528
+ }
529
+ },
530
+ {
531
+ "x": "2025-11-12 00:00:00",
532
+ "ys": {
533
+ "anthropic/claude-4.5-sonnet-20250929": 34084964421,
534
+ "anthropic/claude-4-sonnet-20250522": 7720868409,
535
+ "anthropic/claude-4.5-haiku-20251001": 3067398804,
536
+ "anthropic/claude-3-5-haiku": 2248235185,
537
+ "anthropic/claude-3-7-sonnet-20250219": 1092091438,
538
+ "anthropic/claude-4.1-opus-20250805": 1026485458,
539
+ "anthropic/claude-3-haiku": 658341177,
540
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 94921581,
541
+ "anthropic/claude-4-opus-20250522": 67562418,
542
+ "Others": 8220421
543
+ }
544
+ },
545
+ {
546
+ "x": "2025-11-13 00:00:00",
547
+ "ys": {
548
+ "anthropic/claude-4.5-sonnet-20250929": 34779085463,
549
+ "anthropic/claude-4-sonnet-20250522": 7374736285,
550
+ "anthropic/claude-4.5-haiku-20251001": 3507124231,
551
+ "anthropic/claude-3-5-haiku": 1984400233,
552
+ "anthropic/claude-3-7-sonnet-20250219": 1254681781,
553
+ "anthropic/claude-3-haiku": 572534097,
554
+ "anthropic/claude-4.1-opus-20250805": 358363625,
555
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 116228966,
556
+ "anthropic/claude-4-opus-20250522": 54729100,
557
+ "Others": 24108810
558
+ }
559
+ },
560
+ {
561
+ "x": "2025-11-14 00:00:00",
562
+ "ys": {
563
+ "anthropic/claude-4.5-sonnet-20250929": 31270569598,
564
+ "anthropic/claude-4-sonnet-20250522": 7067030684,
565
+ "anthropic/claude-4.5-haiku-20251001": 3745759698,
566
+ "anthropic/claude-3-5-haiku": 2021963892,
567
+ "anthropic/claude-3-7-sonnet-20250219": 1023108139,
568
+ "anthropic/claude-3-haiku": 449089309,
569
+ "anthropic/claude-4.1-opus-20250805": 291400708,
570
+ "anthropic/claude-4-opus-20250522": 91297300,
571
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 60355523,
572
+ "Others": 19088726
573
+ }
574
+ },
575
+ {
576
+ "x": "2025-11-15 00:00:00",
577
+ "ys": {
578
+ "anthropic/claude-4.5-sonnet-20250929": 23658616361,
579
+ "anthropic/claude-4-sonnet-20250522": 4219788602,
580
+ "anthropic/claude-4.5-haiku-20251001": 2757136560,
581
+ "anthropic/claude-3-5-haiku": 1944220873,
582
+ "anthropic/claude-3-7-sonnet-20250219": 884791270,
583
+ "anthropic/claude-4.1-opus-20250805": 489810811,
584
+ "anthropic/claude-3-haiku": 337902663,
585
+ "anthropic/claude-4-opus-20250522": 48376991,
586
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 24462834,
587
+ "Others": 18996771
588
+ }
589
+ },
590
+ {
591
+ "x": "2025-11-16 00:00:00",
592
+ "ys": {
593
+ "anthropic/claude-4.5-sonnet-20250929": 52650451445,
594
+ "anthropic/claude-4-sonnet-20250522": 3363963325,
595
+ "anthropic/claude-4.5-haiku-20251001": 2794313174,
596
+ "anthropic/claude-3-5-haiku": 1483442792,
597
+ "anthropic/claude-3-7-sonnet-20250219": 1028501447,
598
+ "anthropic/claude-4.1-opus-20250805": 499736435,
599
+ "anthropic/claude-3-haiku": 340044633,
600
+ "anthropic/claude-4-opus-20250522": 72468880,
601
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 65380789,
602
+ "Others": 23017308
603
+ }
604
+ },
605
+ {
606
+ "x": "2025-11-17 00:00:00",
607
+ "ys": {
608
+ "anthropic/claude-4.5-sonnet-20250929": 31433507066,
609
+ "anthropic/claude-4-sonnet-20250522": 5620294585,
610
+ "anthropic/claude-4.5-haiku-20251001": 4096549930,
611
+ "anthropic/claude-3-5-haiku": 2006121843,
612
+ "anthropic/claude-3-7-sonnet-20250219": 1131930631,
613
+ "anthropic/claude-4.1-opus-20250805": 626234540,
614
+ "anthropic/claude-3-haiku": 497727466,
615
+ "anthropic/claude-4-opus-20250522": 84038150,
616
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 52964866,
617
+ "Others": 21676897
618
+ }
619
+ },
620
+ {
621
+ "x": "2025-11-18 00:00:00",
622
+ "ys": {
623
+ "anthropic/claude-4.5-sonnet-20250929": 31268917736,
624
+ "anthropic/claude-4-sonnet-20250522": 5372973909,
625
+ "anthropic/claude-4.5-haiku-20251001": 3902212795,
626
+ "anthropic/claude-3-5-haiku": 2216998176,
627
+ "anthropic/claude-3-7-sonnet-20250219": 1769163242,
628
+ "anthropic/claude-3-haiku": 484700049,
629
+ "anthropic/claude-4.1-opus-20250805": 445833866,
630
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 93259484,
631
+ "anthropic/claude-4-opus-20250522": 70555432,
632
+ "Others": 13376288
633
+ }
634
+ },
635
+ {
636
+ "x": "2025-11-19 00:00:00",
637
+ "ys": {
638
+ "anthropic/claude-4.5-sonnet-20250929": 32396900459,
639
+ "anthropic/claude-4-sonnet-20250522": 7582551814,
640
+ "anthropic/claude-4.5-haiku-20251001": 3792101680,
641
+ "anthropic/claude-3-5-haiku": 2183276131,
642
+ "anthropic/claude-3-7-sonnet-20250219": 1243659360,
643
+ "anthropic/claude-3-haiku": 471999788,
644
+ "anthropic/claude-4.1-opus-20250805": 461477800,
645
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 79031214,
646
+ "anthropic/claude-4-opus-20250522": 64276381,
647
+ "Others": 13629239
648
+ }
649
+ },
650
+ {
651
+ "x": "2025-11-20 00:00:00",
652
+ "ys": {
653
+ "anthropic/claude-4.5-sonnet-20250929": 28473834962,
654
+ "anthropic/claude-4-sonnet-20250522": 6511984663,
655
+ "anthropic/claude-4.5-haiku-20251001": 3613230167,
656
+ "anthropic/claude-3-5-haiku": 2077003344,
657
+ "anthropic/claude-3-7-sonnet-20250219": 1904077848,
658
+ "anthropic/claude-4.1-opus-20250805": 718763938,
659
+ "anthropic/claude-3-haiku": 430542988,
660
+ "anthropic/claude-4-opus-20250522": 113454956,
661
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 56847447,
662
+ "Others": 10632252
663
+ }
664
+ },
665
+ {
666
+ "x": "2025-11-21 00:00:00",
667
+ "ys": {
668
+ "anthropic/claude-4.5-sonnet-20250929": 30599511339,
669
+ "anthropic/claude-4-sonnet-20250522": 6314432139,
670
+ "anthropic/claude-4.5-haiku-20251001": 4128869337,
671
+ "anthropic/claude-3-5-haiku": 1852485461,
672
+ "anthropic/claude-3-7-sonnet-20250219": 1808392962,
673
+ "anthropic/claude-4.1-opus-20250805": 467435486,
674
+ "anthropic/claude-3-haiku": 431017975,
675
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 96656197,
676
+ "anthropic/claude-4-opus-20250522": 88335745,
677
+ "Others": 10157760
678
+ }
679
+ },
680
+ {
681
+ "x": "2025-11-22 00:00:00",
682
+ "ys": {
683
+ "anthropic/claude-4.5-sonnet-20250929": 21136074888,
684
+ "anthropic/claude-4-sonnet-20250522": 5874114865,
685
+ "anthropic/claude-4.5-haiku-20251001": 1617943419,
686
+ "anthropic/claude-3-7-sonnet-20250219": 1522864802,
687
+ "anthropic/claude-3-5-haiku": 1177524722,
688
+ "anthropic/claude-3-haiku": 370806666,
689
+ "anthropic/claude-4.1-opus-20250805": 272891973,
690
+ "anthropic/claude-4-opus-20250522": 42927862,
691
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 33773431,
692
+ "Others": 6064323
693
+ }
694
+ },
695
+ {
696
+ "x": "2025-11-23 00:00:00",
697
+ "ys": {
698
+ "anthropic/claude-4.5-sonnet-20250929": 20416788944,
699
+ "anthropic/claude-4-sonnet-20250522": 6109610145,
700
+ "anthropic/claude-4.5-haiku-20251001": 1624973512,
701
+ "anthropic/claude-3-7-sonnet-20250219": 1618941206,
702
+ "anthropic/claude-3-5-haiku": 1168979063,
703
+ "anthropic/claude-3-haiku": 340219532,
704
+ "anthropic/claude-4.1-opus-20250805": 214080501,
705
+ "anthropic/claude-4-opus-20250522": 33989622,
706
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 25125721,
707
+ "Others": 10972265
708
+ }
709
+ },
710
+ {
711
+ "x": "2025-11-24 00:00:00",
712
+ "ys": {
713
+ "anthropic/claude-4.5-sonnet-20250929": 30530545001,
714
+ "anthropic/claude-4-sonnet-20250522": 9134556019,
715
+ "anthropic/claude-4.5-haiku-20251001": 2342686422,
716
+ "anthropic/claude-3-5-haiku": 1934681768,
717
+ "anthropic/claude-3-7-sonnet-20250219": 1729128061,
718
+ "anthropic/claude-4.5-opus-20251124": 940832575,
719
+ "anthropic/claude-3-haiku": 484710799,
720
+ "anthropic/claude-4.1-opus-20250805": 331476649,
721
+ "anthropic/claude-4-opus-20250522": 55776612,
722
+ "Others": 32158104
723
+ }
724
+ },
725
+ {
726
+ "x": "2025-11-25 00:00:00",
727
+ "ys": {
728
+ "anthropic/claude-4.5-sonnet-20250929": 26947774829,
729
+ "anthropic/claude-4.5-opus-20251124": 10037252717,
730
+ "anthropic/claude-4-sonnet-20250522": 6618865747,
731
+ "anthropic/claude-4.5-haiku-20251001": 2618365923,
732
+ "anthropic/claude-3-5-haiku": 1984386391,
733
+ "anthropic/claude-3-7-sonnet-20250219": 1695554643,
734
+ "anthropic/claude-3-haiku": 574342527,
735
+ "anthropic/claude-4.1-opus-20250805": 296667234,
736
+ "anthropic/claude-4-opus-20250522": 141507532,
737
+ "Others": 49613059
738
+ }
739
+ },
740
+ {
741
+ "x": "2025-11-26 00:00:00",
742
+ "ys": {
743
+ "anthropic/claude-4.5-sonnet-20250929": 25654368209,
744
+ "anthropic/claude-4.5-opus-20251124": 13872147218,
745
+ "anthropic/claude-4-sonnet-20250522": 6930852181,
746
+ "anthropic/claude-4.5-haiku-20251001": 2488264276,
747
+ "anthropic/claude-3-7-sonnet-20250219": 2220752821,
748
+ "anthropic/claude-3-5-haiku": 1820980242,
749
+ "anthropic/claude-3-haiku": 544803551,
750
+ "anthropic/claude-4.1-opus-20250805": 290375498,
751
+ "anthropic/claude-4-opus-20250522": 91803209,
752
+ "Others": 93458365
753
+ }
754
+ },
755
+ {
756
+ "x": "2025-11-27 00:00:00",
757
+ "ys": {
758
+ "anthropic/claude-4.5-sonnet-20250929": 21391378539,
759
+ "anthropic/claude-4.5-opus-20251124": 10084721484,
760
+ "anthropic/claude-4-sonnet-20250522": 5227132252,
761
+ "anthropic/claude-4.5-haiku-20251001": 2379393454,
762
+ "anthropic/claude-3-7-sonnet-20250219": 1952123254,
763
+ "anthropic/claude-3-5-haiku": 1376368784,
764
+ "anthropic/claude-3-haiku": 513251067,
765
+ "anthropic/claude-4.1-opus-20250805": 369750529,
766
+ "anthropic/claude-4-opus-20250522": 105807819,
767
+ "Others": 69592306
768
+ }
769
+ },
770
+ {
771
+ "x": "2025-11-28 00:00:00",
772
+ "ys": {
773
+ "anthropic/claude-4.5-sonnet-20250929": 19300614134,
774
+ "anthropic/claude-4.5-opus-20251124": 8838337443,
775
+ "anthropic/claude-4-sonnet-20250522": 4825464070,
776
+ "anthropic/claude-4.5-haiku-20251001": 3372796614,
777
+ "anthropic/claude-3-7-sonnet-20250219": 1742719771,
778
+ "anthropic/claude-3-5-haiku": 1272338615,
779
+ "anthropic/claude-3-haiku": 473199210,
780
+ "anthropic/claude-4.1-opus-20250805": 189429407,
781
+ "anthropic/claude-4-opus-20250522": 38115751,
782
+ "Others": 35214265
783
+ }
784
+ },
785
+ {
786
+ "x": "2025-11-29 00:00:00",
787
+ "ys": {
788
+ "anthropic/claude-4.5-sonnet-20250929": 15333836767,
789
+ "anthropic/claude-4.5-opus-20251124": 8610037910,
790
+ "anthropic/claude-4-sonnet-20250522": 4258929781,
791
+ "anthropic/claude-4.5-haiku-20251001": 2013810478,
792
+ "anthropic/claude-3-7-sonnet-20250219": 1446285200,
793
+ "anthropic/claude-3-5-haiku": 892747344,
794
+ "anthropic/claude-3-haiku": 461659762,
795
+ "anthropic/claude-4.1-opus-20250805": 164215934,
796
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 32562532,
797
+ "Others": 22075251
798
+ }
799
+ },
800
+ {
801
+ "x": "2025-11-30 00:00:00",
802
+ "ys": {
803
+ "anthropic/claude-4.5-sonnet-20250929": 16252574948,
804
+ "anthropic/claude-4.5-opus-20251124": 8999342912,
805
+ "anthropic/claude-4-sonnet-20250522": 4093863402,
806
+ "anthropic/claude-4.5-haiku-20251001": 2198031272,
807
+ "anthropic/claude-3-7-sonnet-20250219": 1504067312,
808
+ "anthropic/claude-3-5-haiku": 1064102461,
809
+ "anthropic/claude-3-haiku": 526009188,
810
+ "anthropic/claude-4.1-opus-20250805": 287982390,
811
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 175394974,
812
+ "Others": 82134878
813
+ }
814
+ },
815
+ {
816
+ "x": "2025-12-01 00:00:00",
817
+ "ys": {
818
+ "anthropic/claude-4.5-sonnet-20250929": 22503112250,
819
+ "anthropic/claude-4.5-opus-20251124": 10351371498,
820
+ "anthropic/claude-4-sonnet-20250522": 6132641197,
821
+ "anthropic/claude-4.5-haiku-20251001": 2692172527,
822
+ "anthropic/claude-3-5-haiku": 2054235878,
823
+ "anthropic/claude-3-7-sonnet-20250219": 1870060567,
824
+ "anthropic/claude-3-haiku": 585893468,
825
+ "anthropic/claude-4.1-opus-20250805": 271719602,
826
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 174103609,
827
+ "Others": 178951086
828
+ }
829
+ },
830
+ {
831
+ "x": "2025-12-02 00:00:00",
832
+ "ys": {
833
+ "anthropic/claude-4.5-sonnet-20250929": 22113936875,
834
+ "anthropic/claude-4.5-opus-20251124": 11270739830,
835
+ "anthropic/claude-4-sonnet-20250522": 6121486128,
836
+ "anthropic/claude-4.5-haiku-20251001": 3873411559,
837
+ "anthropic/claude-3-7-sonnet-20250219": 2083063036,
838
+ "anthropic/claude-3-5-haiku": 2007781248,
839
+ "anthropic/claude-3-haiku": 672190124,
840
+ "anthropic/claude-4.1-opus-20250805": 323168816,
841
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 136867265,
842
+ "Others": 89620909
843
+ }
844
+ },
845
+ {
846
+ "x": "2025-12-03 00:00:00",
847
+ "ys": {
848
+ "anthropic/claude-4.5-sonnet-20250929": 24000016491,
849
+ "anthropic/claude-4.5-opus-20251124": 13110569312,
850
+ "anthropic/claude-4-sonnet-20250522": 5831483986,
851
+ "anthropic/claude-4.5-haiku-20251001": 3844335330,
852
+ "anthropic/claude-3-5-haiku": 1936551160,
853
+ "anthropic/claude-3-7-sonnet-20250219": 1650935693,
854
+ "anthropic/claude-3-haiku": 839597817,
855
+ "anthropic/claude-4.1-opus-20250805": 358198407,
856
+ "anthropic/claude-4-opus-20250522": 102691931,
857
+ "Others": 84839195
858
+ }
859
+ },
860
+ {
861
+ "x": "2025-12-04 00:00:00",
862
+ "ys": {
863
+ "anthropic/claude-4.5-sonnet-20250929": 21365491469,
864
+ "anthropic/claude-4.5-opus-20251124": 13272123858,
865
+ "anthropic/claude-4-sonnet-20250522": 6177781440,
866
+ "anthropic/claude-4.5-haiku-20251001": 5083989759,
867
+ "anthropic/claude-3-5-haiku": 1830478759,
868
+ "anthropic/claude-3-7-sonnet-20250219": 1772315376,
869
+ "anthropic/claude-3-haiku": 754536731,
870
+ "anthropic/claude-4.1-opus-20250805": 394508222,
871
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 111908274,
872
+ "Others": 91675540
873
+ }
874
+ },
875
+ {
876
+ "x": "2025-12-05 00:00:00",
877
+ "ys": {
878
+ "anthropic/claude-4.5-sonnet-20250929": 19356223485,
879
+ "anthropic/claude-4.5-opus-20251124": 9463309045,
880
+ "anthropic/claude-4-sonnet-20250522": 6010073155,
881
+ "anthropic/claude-4.5-haiku-20251001": 2976216516,
882
+ "anthropic/claude-3-7-sonnet-20250219": 1806952264,
883
+ "anthropic/claude-3-5-haiku": 1343991098,
884
+ "anthropic/claude-3-haiku": 477917855,
885
+ "anthropic/claude-4.1-opus-20250805": 319358709,
886
+ "anthropic/claude-4-opus-20250522": 170882103,
887
+ "Others": 116080282
888
+ }
889
+ },
890
+ {
891
+ "x": "2025-12-06 00:00:00",
892
+ "ys": {
893
+ "anthropic/claude-4.5-sonnet-20250929": 13580389458,
894
+ "anthropic/claude-4.5-opus-20251124": 5430254145,
895
+ "anthropic/claude-4-sonnet-20250522": 3181643530,
896
+ "anthropic/claude-4.5-haiku-20251001": 1964282676,
897
+ "anthropic/claude-3-7-sonnet-20250219": 1397605298,
898
+ "anthropic/claude-3-5-haiku": 568488775,
899
+ "anthropic/claude-3-haiku": 397414421,
900
+ "anthropic/claude-4.1-opus-20250805": 307314354,
901
+ "anthropic/claude-4-opus-20250522": 54258217,
902
+ "Others": 47657290
903
+ }
904
+ },
905
+ {
906
+ "x": "2025-12-07 00:00:00",
907
+ "ys": {
908
+ "anthropic/claude-4.5-sonnet-20250929": 16955821931,
909
+ "anthropic/claude-4.5-opus-20251124": 4777278471,
910
+ "anthropic/claude-4-sonnet-20250522": 3804556742,
911
+ "anthropic/claude-3-7-sonnet-20250219": 1617173524,
912
+ "anthropic/claude-4.5-haiku-20251001": 1469717247,
913
+ "anthropic/claude-3-5-haiku": 613548081,
914
+ "anthropic/claude-3-haiku": 431149773,
915
+ "anthropic/claude-4.1-opus-20250805": 408441622,
916
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 44260680,
917
+ "Others": 51512242
918
+ }
919
+ },
920
+ {
921
+ "x": "2025-12-08 00:00:00",
922
+ "ys": {
923
+ "anthropic/claude-4.5-sonnet-20250929": 20953458489,
924
+ "anthropic/claude-4.5-opus-20251124": 9298456759,
925
+ "anthropic/claude-4-sonnet-20250522": 5620216545,
926
+ "anthropic/claude-4.5-haiku-20251001": 1853379163,
927
+ "anthropic/claude-3-7-sonnet-20250219": 1639096884,
928
+ "anthropic/claude-3-5-haiku": 1196580236,
929
+ "anthropic/claude-3-haiku": 379356641,
930
+ "anthropic/claude-4.1-opus-20250805": 239936077,
931
+ "anthropic/claude-4-opus-20250522": 153696425,
932
+ "Others": 56872108
933
+ }
934
+ },
935
+ {
936
+ "x": "2025-12-09 00:00:00",
937
+ "ys": {
938
+ "anthropic/claude-4.5-sonnet-20250929": 21539767027,
939
+ "anthropic/claude-4.5-opus-20251124": 7850092829,
940
+ "anthropic/claude-4-sonnet-20250522": 6029838812,
941
+ "anthropic/claude-4.5-haiku-20251001": 3289623139,
942
+ "anthropic/claude-3-7-sonnet-20250219": 1806306139,
943
+ "anthropic/claude-3-5-haiku": 1112305147,
944
+ "anthropic/claude-3-haiku": 672918437,
945
+ "anthropic/claude-4.1-opus-20250805": 221829233,
946
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 160925848,
947
+ "Others": 90790088
948
+ }
949
+ },
950
+ {
951
+ "x": "2025-12-10 00:00:00",
952
+ "ys": {
953
+ "anthropic/claude-4.5-sonnet-20250929": 19313825333,
954
+ "anthropic/claude-4.5-opus-20251124": 8018246982,
955
+ "anthropic/claude-4.5-haiku-20251001": 5477634261,
956
+ "anthropic/claude-4-sonnet-20250522": 4855984449,
957
+ "anthropic/claude-3-7-sonnet-20250219": 1774747248,
958
+ "anthropic/claude-3-5-haiku": 894157067,
959
+ "anthropic/claude-3-haiku": 673072698,
960
+ "anthropic/claude-4.1-opus-20250805": 379333128,
961
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 77985191,
962
+ "Others": 65296139
963
+ }
964
+ },
965
+ {
966
+ "x": "2025-12-11 00:00:00",
967
+ "ys": {
968
+ "anthropic/claude-4.5-sonnet-20250929": 18926413141,
969
+ "anthropic/claude-4.5-opus-20251124": 17017803181,
970
+ "anthropic/claude-4-sonnet-20250522": 4966055426,
971
+ "anthropic/claude-4.5-haiku-20251001": 4274534872,
972
+ "anthropic/claude-3-7-sonnet-20250219": 1593886482,
973
+ "anthropic/claude-3-5-haiku": 782436450,
974
+ "anthropic/claude-3-haiku": 387175872,
975
+ "anthropic/claude-4.1-opus-20250805": 287103004,
976
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 57549319,
977
+ "Others": 69327046
978
+ }
979
+ },
980
+ {
981
+ "x": "2025-12-12 00:00:00",
982
+ "ys": {
983
+ "anthropic/claude-4.5-sonnet-20250929": 17305563935,
984
+ "anthropic/claude-4.5-opus-20251124": 14178281237,
985
+ "anthropic/claude-4.5-haiku-20251001": 5932165570,
986
+ "anthropic/claude-4-sonnet-20250522": 4794494909,
987
+ "anthropic/claude-3-7-sonnet-20250219": 1777931757,
988
+ "anthropic/claude-3-5-haiku": 887210829,
989
+ "anthropic/claude-4.1-opus-20250805": 494070870,
990
+ "anthropic/claude-3-haiku": 281950025,
991
+ "anthropic/claude-4-opus-20250522": 46041373,
992
+ "Others": 54489017
993
+ }
994
+ },
995
+ {
996
+ "x": "2025-12-13 00:00:00",
997
+ "ys": {
998
+ "anthropic/claude-4.5-sonnet-20250929": 13471643079,
999
+ "anthropic/claude-4.5-opus-20251124": 6409880375,
1000
+ "anthropic/claude-4.5-haiku-20251001": 4917297743,
1001
+ "anthropic/claude-4-sonnet-20250522": 2903678576,
1002
+ "anthropic/claude-3-7-sonnet-20250219": 1432518448,
1003
+ "anthropic/claude-4.1-opus-20250805": 817822819,
1004
+ "anthropic/claude-3-5-haiku": 386464963,
1005
+ "anthropic/claude-3-haiku": 222194183,
1006
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 49701100,
1007
+ "Others": 40596770
1008
+ }
1009
+ },
1010
+ {
1011
+ "x": "2025-12-14 00:00:00",
1012
+ "ys": {
1013
+ "anthropic/claude-4.5-sonnet-20250929": 12936529131,
1014
+ "anthropic/claude-4.5-opus-20251124": 6899495377,
1015
+ "anthropic/claude-4.5-haiku-20251001": 3757999054,
1016
+ "anthropic/claude-4-sonnet-20250522": 2733303985,
1017
+ "anthropic/claude-3-7-sonnet-20250219": 1397170313,
1018
+ "anthropic/claude-3-5-haiku": 458991093,
1019
+ "anthropic/claude-3-haiku": 240177614,
1020
+ "anthropic/claude-4.1-opus-20250805": 213614020,
1021
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 72374431,
1022
+ "Others": 53701723
1023
+ }
1024
+ },
1025
+ {
1026
+ "x": "2025-12-15 00:00:00",
1027
+ "ys": {
1028
+ "anthropic/claude-4.5-sonnet-20250929": 18009145366,
1029
+ "anthropic/claude-4.5-opus-20251124": 12307041837,
1030
+ "anthropic/claude-4.5-haiku-20251001": 5209630061,
1031
+ "anthropic/claude-4-sonnet-20250522": 4304353871,
1032
+ "anthropic/claude-3-7-sonnet-20250219": 1586976930,
1033
+ "anthropic/claude-3-5-haiku": 1049281994,
1034
+ "anthropic/claude-3-haiku": 253084422,
1035
+ "anthropic/claude-4.1-opus-20250805": 188932752,
1036
+ "anthropic/claude-4-opus-20250522": 160078520,
1037
+ "Others": 121034675
1038
+ }
1039
+ },
1040
+ {
1041
+ "x": "2025-12-16 00:00:00",
1042
+ "ys": {
1043
+ "anthropic/claude-4.5-sonnet-20250929": 19984976663,
1044
+ "anthropic/claude-4.5-opus-20251124": 7942600845,
1045
+ "anthropic/claude-4.5-haiku-20251001": 4741205737,
1046
+ "anthropic/claude-4-sonnet-20250522": 4310065931,
1047
+ "anthropic/claude-3-7-sonnet-20250219": 1432628407,
1048
+ "anthropic/claude-3-5-haiku": 1217908032,
1049
+ "anthropic/claude-3-haiku": 323211067,
1050
+ "anthropic/claude-4.1-opus-20250805": 129835109,
1051
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 93341766,
1052
+ "Others": 98687474
1053
+ }
1054
+ },
1055
+ {
1056
+ "x": "2025-12-17 00:00:00",
1057
+ "ys": {
1058
+ "anthropic/claude-4.5-sonnet-20250929": 21916408551,
1059
+ "anthropic/claude-4.5-opus-20251124": 7843829949,
1060
+ "anthropic/claude-4.5-haiku-20251001": 4940462918,
1061
+ "anthropic/claude-4-sonnet-20250522": 4628311473,
1062
+ "anthropic/claude-3-7-sonnet-20250219": 1746280674,
1063
+ "anthropic/claude-3-5-haiku": 1065561348,
1064
+ "anthropic/claude-3-haiku": 463093161,
1065
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 122615377,
1066
+ "anthropic/claude-4.1-opus-20250805": 89057640,
1067
+ "Others": 94627945
1068
+ }
1069
+ },
1070
+ {
1071
+ "x": "2025-12-18 00:00:00",
1072
+ "ys": {
1073
+ "anthropic/claude-4.5-sonnet-20250929": 20279139081,
1074
+ "anthropic/claude-4.5-opus-20251124": 7629968793,
1075
+ "anthropic/claude-4.5-haiku-20251001": 4516112583,
1076
+ "anthropic/claude-4-sonnet-20250522": 4232182206,
1077
+ "anthropic/claude-3-7-sonnet-20250219": 1421152865,
1078
+ "anthropic/claude-3-5-haiku": 1049581046,
1079
+ "anthropic/claude-3-haiku": 358558486,
1080
+ "anthropic/claude-4.1-opus-20250805": 103025587,
1081
+ "anthropic/claude-3-opus": 73507728,
1082
+ "Others": 99614743
1083
+ }
1084
+ },
1085
+ {
1086
+ "x": "2025-12-19 00:00:00",
1087
+ "ys": {
1088
+ "anthropic/claude-4.5-sonnet-20250929": 19669499520,
1089
+ "anthropic/claude-4.5-opus-20251124": 8167825526,
1090
+ "anthropic/claude-4.5-haiku-20251001": 4661559327,
1091
+ "anthropic/claude-4-sonnet-20250522": 2638030569,
1092
+ "anthropic/claude-3-7-sonnet-20250219": 1445784180,
1093
+ "anthropic/claude-3-5-haiku": 859492306,
1094
+ "anthropic/claude-3-haiku": 307113904,
1095
+ "anthropic/claude-4.1-opus-20250805": 53786692,
1096
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 41411494,
1097
+ "Others": 56894260
1098
+ }
1099
+ },
1100
+ {
1101
+ "x": "2025-12-20 00:00:00",
1102
+ "ys": {
1103
+ "anthropic/claude-4.5-sonnet-20250929": 15090808174,
1104
+ "anthropic/claude-4.5-opus-20251124": 7967433789,
1105
+ "anthropic/claude-4.5-haiku-20251001": 3227077137,
1106
+ "anthropic/claude-3-7-sonnet-20250219": 1383546165,
1107
+ "anthropic/claude-4-sonnet-20250522": 1195051803,
1108
+ "anthropic/claude-3-5-haiku": 338459832,
1109
+ "anthropic/claude-3-haiku": 305228228,
1110
+ "anthropic/claude-4.1-opus-20250805": 37328959,
1111
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 35300101,
1112
+ "Others": 38275672
1113
+ }
1114
+ },
1115
+ {
1116
+ "x": "2025-12-21 00:00:00",
1117
+ "ys": {
1118
+ "anthropic/claude-4.5-opus-20251124": 15833639331,
1119
+ "anthropic/claude-4.5-sonnet-20250929": 15030506848,
1120
+ "anthropic/claude-4.5-haiku-20251001": 2884771231,
1121
+ "anthropic/claude-3-7-sonnet-20250219": 1357086881,
1122
+ "anthropic/claude-4-sonnet-20250522": 1325943243,
1123
+ "anthropic/claude-3-5-haiku": 484987359,
1124
+ "anthropic/claude-3-haiku": 310476610,
1125
+ "anthropic/claude-3-opus": 104105882,
1126
+ "anthropic/claude-4.1-opus-20250805": 37214351,
1127
+ "Others": 56024916
1128
+ }
1129
+ },
1130
+ {
1131
+ "x": "2025-12-22 00:00:00",
1132
+ "ys": {
1133
+ "anthropic/claude-4.5-sonnet-20250929": 21030433754,
1134
+ "anthropic/claude-4.5-opus-20251124": 7592758024,
1135
+ "anthropic/claude-4.5-haiku-20251001": 4222799136,
1136
+ "anthropic/claude-4-sonnet-20250522": 2299871798,
1137
+ "anthropic/claude-3-7-sonnet-20250219": 1460562946,
1138
+ "anthropic/claude-3-5-haiku": 939758846,
1139
+ "anthropic/claude-3-haiku": 521536563,
1140
+ "anthropic/claude-4.1-opus-20250805": 95770846,
1141
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 42142306,
1142
+ "Others": 38619524
1143
+ }
1144
+ },
1145
+ {
1146
+ "x": "2025-12-23 00:00:00",
1147
+ "ys": {
1148
+ "anthropic/claude-4.5-sonnet-20250929": 21837444253,
1149
+ "anthropic/claude-4.5-opus-20251124": 6290903865,
1150
+ "anthropic/claude-4.5-haiku-20251001": 4524168423,
1151
+ "anthropic/claude-4-sonnet-20250522": 2757585116,
1152
+ "anthropic/claude-3-7-sonnet-20250219": 1417228722,
1153
+ "anthropic/claude-3-5-haiku": 848989295,
1154
+ "anthropic/claude-3-haiku": 600110115,
1155
+ "anthropic/claude-4.1-opus-20250805": 118451897,
1156
+ "anthropic/claude-3-opus": 44664106,
1157
+ "Others": 64222880
1158
+ }
1159
+ },
1160
+ {
1161
+ "x": "2025-12-24 00:00:00",
1162
+ "ys": {
1163
+ "anthropic/claude-4.5-sonnet-20250929": 18445814314,
1164
+ "anthropic/claude-4.5-opus-20251124": 8558542821,
1165
+ "anthropic/claude-4.5-haiku-20251001": 4025753097,
1166
+ "anthropic/claude-4-sonnet-20250522": 1359678003,
1167
+ "anthropic/claude-3-7-sonnet-20250219": 1322694126,
1168
+ "anthropic/claude-3-haiku": 338929117,
1169
+ "anthropic/claude-3-5-haiku": 316739134,
1170
+ "anthropic/claude-3-opus": 246753508,
1171
+ "anthropic/claude-4.1-opus-20250805": 45505931,
1172
+ "Others": 57103397
1173
+ }
1174
+ },
1175
+ {
1176
+ "x": "2025-12-25 00:00:00",
1177
+ "ys": {
1178
+ "anthropic/claude-4.5-sonnet-20250929": 15821437339,
1179
+ "anthropic/claude-4.5-opus-20251124": 5418986182,
1180
+ "anthropic/claude-4.5-haiku-20251001": 3222838044,
1181
+ "anthropic/claude-3-7-sonnet-20250219": 1254383705,
1182
+ "anthropic/claude-4-sonnet-20250522": 684406475,
1183
+ "anthropic/claude-3-5-haiku": 340940284,
1184
+ "anthropic/claude-3-haiku": 279755084,
1185
+ "anthropic/claude-3-opus": 159308588,
1186
+ "anthropic/claude-4-opus-20250522": 50656201,
1187
+ "Others": 53183920
1188
+ }
1189
+ },
1190
+ {
1191
+ "x": "2025-12-26 00:00:00",
1192
+ "ys": {
1193
+ "anthropic/claude-4.5-sonnet-20250929": 15070776568,
1194
+ "anthropic/claude-4.5-opus-20251124": 6339301159,
1195
+ "anthropic/claude-4.5-haiku-20251001": 3354835096,
1196
+ "anthropic/claude-3-7-sonnet-20250219": 1363736173,
1197
+ "anthropic/claude-4-sonnet-20250522": 1252955516,
1198
+ "anthropic/claude-3-opus": 360937977,
1199
+ "anthropic/claude-3-haiku": 314350997,
1200
+ "anthropic/claude-3-5-haiku": 252142237,
1201
+ "anthropic/claude-4.1-opus-20250805": 40130109,
1202
+ "Others": 47349038
1203
+ }
1204
+ },
1205
+ {
1206
+ "x": "2025-12-27 00:00:00",
1207
+ "ys": {
1208
+ "anthropic/claude-4.5-sonnet-20250929": 14492445265,
1209
+ "anthropic/claude-4.5-opus-20251124": 6321039672,
1210
+ "anthropic/claude-4.5-haiku-20251001": 3302514566,
1211
+ "anthropic/claude-3-7-sonnet-20250219": 1433601720,
1212
+ "anthropic/claude-4-sonnet-20250522": 1312999662,
1213
+ "anthropic/claude-3-opus": 378177269,
1214
+ "anthropic/claude-3-5-haiku": 356264866,
1215
+ "anthropic/claude-3-haiku": 346893050,
1216
+ "anthropic/claude-4.1-opus-20250805": 50368164,
1217
+ "Others": 22403641
1218
+ }
1219
+ },
1220
+ {
1221
+ "x": "2025-12-28 00:00:00",
1222
+ "ys": {
1223
+ "anthropic/claude-4.5-sonnet-20250929": 16595873730,
1224
+ "anthropic/claude-4.5-opus-20251124": 4612313550,
1225
+ "anthropic/claude-4.5-haiku-20251001": 3257271383,
1226
+ "anthropic/claude-3-7-sonnet-20250219": 1475879331,
1227
+ "anthropic/claude-4-sonnet-20250522": 1415435403,
1228
+ "anthropic/claude-3-opus": 515908043,
1229
+ "anthropic/claude-3-haiku": 337738889,
1230
+ "anthropic/claude-3-5-haiku": 237271161,
1231
+ "anthropic/claude-4.1-opus-20250805": 58578551,
1232
+ "Others": 52487207
1233
+ }
1234
+ },
1235
+ {
1236
+ "x": "2025-12-29 00:00:00",
1237
+ "ys": {
1238
+ "anthropic/claude-4.5-sonnet-20250929": 18535663970,
1239
+ "anthropic/claude-4.5-opus-20251124": 7156318614,
1240
+ "anthropic/claude-4.5-haiku-20251001": 4521738554,
1241
+ "anthropic/claude-4-sonnet-20250522": 2334186016,
1242
+ "anthropic/claude-3-7-sonnet-20250219": 1614624371,
1243
+ "anthropic/claude-3-5-haiku": 812995553,
1244
+ "anthropic/claude-3-haiku": 390909646,
1245
+ "anthropic/claude-3-opus": 189650572,
1246
+ "anthropic/claude-4.1-opus-20250805": 70370745,
1247
+ "Others": 62107119
1248
+ }
1249
+ },
1250
+ {
1251
+ "x": "2025-12-30 00:00:00",
1252
+ "ys": {
1253
+ "anthropic/claude-4.5-sonnet-20250929": 18740930309,
1254
+ "anthropic/claude-4.5-opus-20251124": 4809136033,
1255
+ "anthropic/claude-4.5-haiku-20251001": 4805115450,
1256
+ "anthropic/claude-4-sonnet-20250522": 2583236063,
1257
+ "anthropic/claude-3-7-sonnet-20250219": 1454262035,
1258
+ "anthropic/claude-3-5-haiku": 904047305,
1259
+ "anthropic/claude-3-haiku": 402644129,
1260
+ "anthropic/claude-3-opus": 240561091,
1261
+ "anthropic/claude-4-opus-20250522": 90152545,
1262
+ "Others": 111208624
1263
+ }
1264
+ },
1265
+ {
1266
+ "x": "2025-12-31 00:00:00",
1267
+ "ys": {
1268
+ "anthropic/claude-4.5-sonnet-20250929": 17371169025,
1269
+ "anthropic/claude-4.5-haiku-20251001": 4636689204,
1270
+ "anthropic/claude-4.5-opus-20251124": 4203463748,
1271
+ "anthropic/claude-4-sonnet-20250522": 2039718422,
1272
+ "anthropic/claude-3-7-sonnet-20250219": 1365574718,
1273
+ "anthropic/claude-3-opus": 463853942,
1274
+ "anthropic/claude-3-haiku": 340253582,
1275
+ "anthropic/claude-3-5-haiku": 257518400,
1276
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 56273983,
1277
+ "Others": 62759378
1278
+ }
1279
+ },
1280
+ {
1281
+ "x": "2026-01-01 00:00:00",
1282
+ "ys": {
1283
+ "anthropic/claude-4.5-sonnet-20250929": 14294251379,
1284
+ "anthropic/claude-4.5-haiku-20251001": 3586686884,
1285
+ "anthropic/claude-4.5-opus-20251124": 3256859129,
1286
+ "anthropic/claude-4-sonnet-20250522": 1841835771,
1287
+ "anthropic/claude-3-7-sonnet-20250219": 1599787221,
1288
+ "anthropic/claude-3-haiku": 288019414,
1289
+ "anthropic/claude-3-5-haiku": 210096162,
1290
+ "anthropic/claude-3-opus": 194259209,
1291
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 24559483,
1292
+ "Others": 37709112
1293
+ }
1294
+ },
1295
+ {
1296
+ "x": "2026-01-02 00:00:00",
1297
+ "ys": {
1298
+ "anthropic/claude-4.5-sonnet-20250929": 16607627282,
1299
+ "anthropic/claude-4.5-haiku-20251001": 4522159644,
1300
+ "anthropic/claude-4.5-opus-20251124": 4478935587,
1301
+ "anthropic/claude-4-sonnet-20250522": 3092466723,
1302
+ "anthropic/claude-3-7-sonnet-20250219": 1720109733,
1303
+ "anthropic/claude-3-5-haiku": 776561054,
1304
+ "anthropic/claude-3-haiku": 315387220,
1305
+ "anthropic/claude-3-opus": 256353628,
1306
+ "anthropic/claude-4-opus-20250522": 61096481,
1307
+ "Others": 30103235
1308
+ }
1309
+ },
1310
+ {
1311
+ "x": "2026-01-03 00:00:00",
1312
+ "ys": {
1313
+ "anthropic/claude-4.5-sonnet-20250929": 14273412116,
1314
+ "anthropic/claude-4.5-opus-20251124": 4655339765,
1315
+ "anthropic/claude-4.5-haiku-20251001": 4490788436,
1316
+ "anthropic/claude-4-sonnet-20250522": 2794963273,
1317
+ "anthropic/claude-3-opus": 2059828701,
1318
+ "anthropic/claude-3-7-sonnet-20250219": 1651947353,
1319
+ "anthropic/claude-3-5-haiku": 367481532,
1320
+ "anthropic/claude-3-haiku": 296802526,
1321
+ "anthropic/claude-4-opus-20250522": 55469152,
1322
+ "Others": 41172294
1323
+ }
1324
+ },
1325
+ {
1326
+ "x": "2026-01-04 00:00:00",
1327
+ "ys": {
1328
+ "anthropic/claude-4.5-sonnet-20250929": 13709406073,
1329
+ "anthropic/claude-4.5-opus-20251124": 5522681850,
1330
+ "anthropic/claude-4.5-haiku-20251001": 4691173648,
1331
+ "anthropic/claude-4-sonnet-20250522": 1961827138,
1332
+ "anthropic/claude-3-7-sonnet-20250219": 1611098378,
1333
+ "anthropic/claude-3-5-haiku": 330987673,
1334
+ "anthropic/claude-3-haiku": 305771992,
1335
+ "anthropic/claude-3-opus": 65849027,
1336
+ "anthropic/claude-3-7-sonnet-20250219:thinking": 49774925,
1337
+ "Others": 33868882
1338
+ }
1339
+ },
1340
+ {
1341
+ "x": "2026-01-05 00:00:00",
1342
+ "ys": {
1343
+ "anthropic/claude-4.5-sonnet-20250929": 18138321278,
1344
+ "anthropic/claude-4.5-opus-20251124": 9483809548,
1345
+ "anthropic/claude-4.5-haiku-20251001": 5169571351,
1346
+ "anthropic/claude-4-sonnet-20250522": 3485099960,
1347
+ "anthropic/claude-3-7-sonnet-20250219": 1723881870,
1348
+ "anthropic/claude-3-5-haiku": 823972540,
1349
+ "anthropic/claude-3-haiku": 337123000,
1350
+ "anthropic/claude-3-opus": 54142198,
1351
+ "anthropic/claude-4-opus-20250522": 36703907,
1352
+ "Others": 60296622
1353
+ }
1354
+ }
1355
+ ],
1356
+ "fetched_at": "2026-01-06T00:09:40.544672",
1357
+ "success": true
1358
+ }
data/providers/baseten.json ADDED
@@ -0,0 +1,1192 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "provider": "baseten",
3
+ "url": "https://openrouter.ai/provider/baseten",
4
+ "data": [
5
+ {
6
+ "x": "2025-10-08 00:00:00",
7
+ "ys": {
8
+ "qwen/qwen3-coder-480b-a35b-07-25": 540983174,
9
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 297700697,
10
+ "openai/gpt-oss-120b": 154861120,
11
+ "meta-llama/llama-4-scout-17b-16e-instruct": 130102556,
12
+ "deepseek/deepseek-r1-0528": 84657283,
13
+ "qwen/qwen3-235b-a22b-07-25": 72008056,
14
+ "moonshotai/kimi-k2-0905": 51794208,
15
+ "moonshotai/kimi-k2": 45269161,
16
+ "deepseek/deepseek-chat-v3-0324": 6831075
17
+ }
18
+ },
19
+ {
20
+ "x": "2025-10-09 00:00:00",
21
+ "ys": {
22
+ "qwen/qwen3-coder-480b-a35b-07-25": 548607689,
23
+ "moonshotai/kimi-k2-0905": 152909291,
24
+ "qwen/qwen3-235b-a22b-07-25": 114899503,
25
+ "deepseek/deepseek-r1-0528": 111097029,
26
+ "openai/gpt-oss-120b": 85864802,
27
+ "moonshotai/kimi-k2": 45314880,
28
+ "deepseek/deepseek-chat-v3-0324": 6343560,
29
+ "meta-llama/llama-4-scout-17b-16e-instruct": 2605698,
30
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 1959315
31
+ }
32
+ },
33
+ {
34
+ "x": "2025-10-10 00:00:00",
35
+ "ys": {
36
+ "qwen/qwen3-coder-480b-a35b-07-25": 614005160,
37
+ "openai/gpt-oss-120b": 214805426,
38
+ "moonshotai/kimi-k2-0905": 187547025,
39
+ "qwen/qwen3-235b-a22b-07-25": 119173069,
40
+ "deepseek/deepseek-r1-0528": 93026813,
41
+ "deepseek/deepseek-chat-v3-0324": 6085035
42
+ }
43
+ },
44
+ {
45
+ "x": "2025-10-11 00:00:00",
46
+ "ys": {
47
+ "qwen/qwen3-coder-480b-a35b-07-25": 980698006,
48
+ "openai/gpt-oss-120b": 270332510,
49
+ "moonshotai/kimi-k2-0905": 109715256,
50
+ "qwen/qwen3-235b-a22b-07-25": 74724277,
51
+ "deepseek/deepseek-r1-0528": 70249656,
52
+ "deepseek/deepseek-chat-v3-0324": 6619578
53
+ }
54
+ },
55
+ {
56
+ "x": "2025-10-12 00:00:00",
57
+ "ys": {
58
+ "qwen/qwen3-coder-480b-a35b-07-25": 550428274,
59
+ "openai/gpt-oss-120b": 262225835,
60
+ "deepseek/deepseek-r1-0528": 98710909,
61
+ "moonshotai/kimi-k2-0905": 75361042,
62
+ "qwen/qwen3-235b-a22b-07-25": 55088743,
63
+ "deepseek/deepseek-chat-v3-0324": 6456609
64
+ }
65
+ },
66
+ {
67
+ "x": "2025-10-13 00:00:00",
68
+ "ys": {
69
+ "openai/gpt-oss-120b": 907664460,
70
+ "qwen/qwen3-coder-480b-a35b-07-25": 605388934,
71
+ "deepseek/deepseek-r1-0528": 102805708,
72
+ "moonshotai/kimi-k2-0905": 76297351,
73
+ "qwen/qwen3-235b-a22b-07-25": 62470560,
74
+ "deepseek/deepseek-chat-v3-0324": 6541600
75
+ }
76
+ },
77
+ {
78
+ "x": "2025-10-14 00:00:00",
79
+ "ys": {
80
+ "openai/gpt-oss-120b": 989005731,
81
+ "qwen/qwen3-coder-480b-a35b-07-25": 705543222,
82
+ "deepseek/deepseek-r1-0528": 105943354,
83
+ "qwen/qwen3-235b-a22b-07-25": 56049205,
84
+ "moonshotai/kimi-k2-0905": 52114236,
85
+ "deepseek/deepseek-chat-v3-0324": 5928528
86
+ }
87
+ },
88
+ {
89
+ "x": "2025-10-15 00:00:00",
90
+ "ys": {
91
+ "qwen/qwen3-coder-480b-a35b-07-25": 607024921,
92
+ "moonshotai/kimi-k2-0905": 545732398,
93
+ "openai/gpt-oss-120b": 514050558,
94
+ "deepseek/deepseek-r1-0528": 95453333,
95
+ "qwen/qwen3-235b-a22b-07-25": 68641775,
96
+ "deepseek/deepseek-chat-v3-0324": 7015555
97
+ }
98
+ },
99
+ {
100
+ "x": "2025-10-16 00:00:00",
101
+ "ys": {
102
+ "moonshotai/kimi-k2-0905": 796858495,
103
+ "openai/gpt-oss-120b": 551192797,
104
+ "qwen/qwen3-coder-480b-a35b-07-25": 550205146,
105
+ "qwen/qwen3-235b-a22b-07-25": 110954819,
106
+ "deepseek/deepseek-r1-0528": 104583802,
107
+ "deepseek/deepseek-chat-v3-0324": 6160553
108
+ }
109
+ },
110
+ {
111
+ "x": "2025-10-17 00:00:00",
112
+ "ys": {
113
+ "moonshotai/kimi-k2-0905": 830584049,
114
+ "openai/gpt-oss-120b": 682398044,
115
+ "qwen/qwen3-coder-480b-a35b-07-25": 475987309,
116
+ "z-ai/glm-4.6": 149130260,
117
+ "qwen/qwen3-235b-a22b-07-25": 145842426,
118
+ "deepseek/deepseek-r1-0528": 99194804,
119
+ "deepseek/deepseek-chat-v3-0324": 15489794
120
+ }
121
+ },
122
+ {
123
+ "x": "2025-10-18 00:00:00",
124
+ "ys": {
125
+ "openai/gpt-oss-120b": 439418816,
126
+ "qwen/qwen3-coder-480b-a35b-07-25": 374383053,
127
+ "z-ai/glm-4.6": 291093491,
128
+ "moonshotai/kimi-k2-0905": 247829467,
129
+ "qwen/qwen3-235b-a22b-07-25": 131324459,
130
+ "deepseek/deepseek-r1-0528": 108625964,
131
+ "deepseek/deepseek-chat-v3-0324": 6345735
132
+ }
133
+ },
134
+ {
135
+ "x": "2025-10-19 00:00:00",
136
+ "ys": {
137
+ "qwen/qwen3-coder-480b-a35b-07-25": 504673837,
138
+ "openai/gpt-oss-120b": 468002659,
139
+ "z-ai/glm-4.6": 287141284,
140
+ "moonshotai/kimi-k2-0905": 173834704,
141
+ "deepseek/deepseek-r1-0528": 108649996,
142
+ "qwen/qwen3-235b-a22b-07-25": 66992313,
143
+ "deepseek/deepseek-chat-v3-0324": 9079242
144
+ }
145
+ },
146
+ {
147
+ "x": "2025-10-20 00:00:00",
148
+ "ys": {
149
+ "openai/gpt-oss-120b": 777915041,
150
+ "qwen/qwen3-coder-480b-a35b-07-25": 559152372,
151
+ "z-ai/glm-4.6": 534596655,
152
+ "deepseek/deepseek-r1-0528": 102960174,
153
+ "qwen/qwen3-235b-a22b-07-25": 91110817,
154
+ "moonshotai/kimi-k2-0905": 87956370,
155
+ "deepseek/deepseek-chat-v3-0324": 10362821
156
+ }
157
+ },
158
+ {
159
+ "x": "2025-10-21 00:00:00",
160
+ "ys": {
161
+ "qwen/qwen3-coder-480b-a35b-07-25": 579347693,
162
+ "z-ai/glm-4.6": 447353886,
163
+ "qwen/qwen3-235b-a22b-07-25": 97759841,
164
+ "openai/gpt-oss-120b": 96988858,
165
+ "deepseek/deepseek-r1-0528": 64525472,
166
+ "deepseek/deepseek-chat-v3-0324": 8188083,
167
+ "moonshotai/kimi-k2-0905": 5821939
168
+ }
169
+ },
170
+ {
171
+ "x": "2025-10-22 00:00:00",
172
+ "ys": {
173
+ "z-ai/glm-4.6": 680064494,
174
+ "qwen/qwen3-coder-480b-a35b-07-25": 430599116,
175
+ "openai/gpt-oss-120b": 247965171,
176
+ "qwen/qwen3-235b-a22b-07-25": 88582048,
177
+ "deepseek/deepseek-r1-0528": 60441741,
178
+ "deepseek/deepseek-chat-v3-0324": 7912498,
179
+ "moonshotai/kimi-k2-0905": 5577229,
180
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 16056
181
+ }
182
+ },
183
+ {
184
+ "x": "2025-10-23 00:00:00",
185
+ "ys": {
186
+ "qwen/qwen3-coder-480b-a35b-07-25": 1163561900,
187
+ "z-ai/glm-4.6": 633985457,
188
+ "openai/gpt-oss-120b": 279375640,
189
+ "qwen/qwen3-235b-a22b-07-25": 89626705,
190
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 87603916,
191
+ "moonshotai/kimi-k2-0905": 63365778,
192
+ "deepseek/deepseek-r1-0528": 44181892,
193
+ "deepseek/deepseek-chat-v3-0324": 8603726
194
+ }
195
+ },
196
+ {
197
+ "x": "2025-10-24 00:00:00",
198
+ "ys": {
199
+ "z-ai/glm-4.6": 489686035,
200
+ "qwen/qwen3-coder-480b-a35b-07-25": 429881260,
201
+ "openai/gpt-oss-120b": 248095882,
202
+ "moonshotai/kimi-k2-0905": 182894468,
203
+ "qwen/qwen3-235b-a22b-07-25": 165374573,
204
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 114854004,
205
+ "deepseek/deepseek-r1-0528": 41616814,
206
+ "deepseek/deepseek-chat-v3-0324": 8448452
207
+ }
208
+ },
209
+ {
210
+ "x": "2025-10-25 00:00:00",
211
+ "ys": {
212
+ "openai/gpt-oss-120b": 541726986,
213
+ "qwen/qwen3-coder-480b-a35b-07-25": 317084694,
214
+ "qwen/qwen3-235b-a22b-07-25": 300145306,
215
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 228995553,
216
+ "z-ai/glm-4.6": 124165094,
217
+ "moonshotai/kimi-k2-0905": 81961651,
218
+ "deepseek/deepseek-r1-0528": 27548067,
219
+ "deepseek/deepseek-chat-v3-0324": 7816296
220
+ }
221
+ },
222
+ {
223
+ "x": "2025-10-26 00:00:00",
224
+ "ys": {
225
+ "qwen/qwen3-235b-a22b-07-25": 443689297,
226
+ "qwen/qwen3-coder-480b-a35b-07-25": 381698594,
227
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 158117299,
228
+ "z-ai/glm-4.6": 123322659,
229
+ "openai/gpt-oss-120b": 57384784,
230
+ "deepseek/deepseek-r1-0528": 30490728,
231
+ "moonshotai/kimi-k2-0905": 26405065,
232
+ "deepseek/deepseek-chat-v3-0324": 6076266
233
+ }
234
+ },
235
+ {
236
+ "x": "2025-10-27 00:00:00",
237
+ "ys": {
238
+ "qwen/qwen3-coder-480b-a35b-07-25": 667451627,
239
+ "qwen/qwen3-235b-a22b-07-25": 352882976,
240
+ "z-ai/glm-4.6": 276074708,
241
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 148998225,
242
+ "openai/gpt-oss-120b": 55040700,
243
+ "deepseek/deepseek-r1-0528": 53975582,
244
+ "moonshotai/kimi-k2-0905": 45951007,
245
+ "deepseek/deepseek-chat-v3-0324": 7800144
246
+ }
247
+ },
248
+ {
249
+ "x": "2025-10-28 00:00:00",
250
+ "ys": {
251
+ "qwen/qwen3-coder-480b-a35b-07-25": 805121901,
252
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 323205907,
253
+ "qwen/qwen3-235b-a22b-07-25": 261406551,
254
+ "z-ai/glm-4.6": 232320999,
255
+ "openai/gpt-oss-120b": 68107105,
256
+ "deepseek/deepseek-r1-0528": 59057260,
257
+ "moonshotai/kimi-k2-0905": 37970776,
258
+ "deepseek/deepseek-chat-v3-0324": 8115607
259
+ }
260
+ },
261
+ {
262
+ "x": "2025-10-29 00:00:00",
263
+ "ys": {
264
+ "qwen/qwen3-coder-480b-a35b-07-25": 511819797,
265
+ "z-ai/glm-4.6": 395493623,
266
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 314955091,
267
+ "qwen/qwen3-235b-a22b-07-25": 181141285,
268
+ "openai/gpt-oss-120b": 57688557,
269
+ "deepseek/deepseek-r1-0528": 48529345,
270
+ "moonshotai/kimi-k2-0905": 37219672,
271
+ "deepseek/deepseek-chat-v3-0324": 7082257
272
+ }
273
+ },
274
+ {
275
+ "x": "2025-10-30 00:00:00",
276
+ "ys": {
277
+ "qwen/qwen3-coder-480b-a35b-07-25": 640710406,
278
+ "z-ai/glm-4.6": 445404563,
279
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 378837020,
280
+ "openai/gpt-oss-120b": 98048529,
281
+ "qwen/qwen3-235b-a22b-07-25": 94405275,
282
+ "deepseek/deepseek-r1-0528": 60930025,
283
+ "moonshotai/kimi-k2-0905": 49208129,
284
+ "deepseek/deepseek-chat-v3-0324": 9415438
285
+ }
286
+ },
287
+ {
288
+ "x": "2025-10-31 00:00:00",
289
+ "ys": {
290
+ "qwen/qwen3-coder-480b-a35b-07-25": 936219748,
291
+ "z-ai/glm-4.6": 200436576,
292
+ "moonshotai/kimi-k2-0905": 155345055,
293
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 140280738,
294
+ "openai/gpt-oss-120b": 115309439,
295
+ "qwen/qwen3-235b-a22b-07-25": 89375507,
296
+ "deepseek/deepseek-r1-0528": 29322773,
297
+ "deepseek/deepseek-chat-v3-0324": 9101203
298
+ }
299
+ },
300
+ {
301
+ "x": "2025-11-01 00:00:00",
302
+ "ys": {
303
+ "qwen/qwen3-coder-480b-a35b-07-25": 375505162,
304
+ "z-ai/glm-4.6": 254379084,
305
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 150729739,
306
+ "openai/gpt-oss-120b": 119312274,
307
+ "qwen/qwen3-235b-a22b-07-25": 88664825,
308
+ "moonshotai/kimi-k2-0905": 42038158,
309
+ "deepseek/deepseek-r1-0528": 19770247,
310
+ "deepseek/deepseek-chat-v3-0324": 15736797
311
+ }
312
+ },
313
+ {
314
+ "x": "2025-11-02 00:00:00",
315
+ "ys": {
316
+ "z-ai/glm-4.6": 456041737,
317
+ "qwen/qwen3-coder-480b-a35b-07-25": 449187981,
318
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 177234484,
319
+ "openai/gpt-oss-120b": 155298841,
320
+ "qwen/qwen3-235b-a22b-07-25": 104920596,
321
+ "moonshotai/kimi-k2-0905": 27719799,
322
+ "deepseek/deepseek-r1-0528": 23010742,
323
+ "deepseek/deepseek-chat-v3-0324": 11978726
324
+ }
325
+ },
326
+ {
327
+ "x": "2025-11-03 00:00:00",
328
+ "ys": {
329
+ "qwen/qwen3-coder-480b-a35b-07-25": 916687154,
330
+ "openai/gpt-oss-120b": 488775541,
331
+ "z-ai/glm-4.6": 482039303,
332
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 237311396,
333
+ "qwen/qwen3-235b-a22b-07-25": 88189604,
334
+ "moonshotai/kimi-k2-0905": 63327362,
335
+ "deepseek/deepseek-r1-0528": 43772708,
336
+ "deepseek/deepseek-chat-v3-0324": 13627252
337
+ }
338
+ },
339
+ {
340
+ "x": "2025-11-04 00:00:00",
341
+ "ys": {
342
+ "qwen/qwen3-coder-480b-a35b-07-25": 867072836,
343
+ "z-ai/glm-4.6": 537302088,
344
+ "openai/gpt-oss-120b": 257546684,
345
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 244091205,
346
+ "moonshotai/kimi-k2-0905": 110187339,
347
+ "qwen/qwen3-235b-a22b-07-25": 74875809,
348
+ "deepseek/deepseek-r1-0528": 31183995,
349
+ "deepseek/deepseek-chat-v3-0324": 9066039
350
+ }
351
+ },
352
+ {
353
+ "x": "2025-11-05 00:00:00",
354
+ "ys": {
355
+ "moonshotai/kimi-k2-0905": 726913122,
356
+ "qwen/qwen3-coder-480b-a35b-07-25": 549793016,
357
+ "openai/gpt-oss-120b": 351009137,
358
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 328744897,
359
+ "z-ai/glm-4.6": 215566933,
360
+ "qwen/qwen3-235b-a22b-07-25": 92308847,
361
+ "deepseek/deepseek-r1-0528": 32243916,
362
+ "deepseek/deepseek-chat-v3-0324": 10806696
363
+ }
364
+ },
365
+ {
366
+ "x": "2025-11-06 00:00:00",
367
+ "ys": {
368
+ "moonshotai/kimi-k2-0905": 564311154,
369
+ "qwen/qwen3-coder-480b-a35b-07-25": 528006150,
370
+ "z-ai/glm-4.6": 502651751,
371
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 282941132,
372
+ "openai/gpt-oss-120b": 262005317,
373
+ "qwen/qwen3-235b-a22b-07-25": 88650932,
374
+ "deepseek/deepseek-r1-0528": 47479302,
375
+ "deepseek/deepseek-chat-v3-0324": 8591049
376
+ }
377
+ },
378
+ {
379
+ "x": "2025-11-07 00:00:00",
380
+ "ys": {
381
+ "qwen/qwen3-coder-480b-a35b-07-25": 465682042,
382
+ "z-ai/glm-4.6": 293087270,
383
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 250194092,
384
+ "moonshotai/kimi-k2-0905": 230785564,
385
+ "openai/gpt-oss-120b": 115078152,
386
+ "qwen/qwen3-235b-a22b-07-25": 92478337,
387
+ "deepseek/deepseek-r1-0528": 57631043,
388
+ "deepseek/deepseek-chat-v3-0324": 8800370
389
+ }
390
+ },
391
+ {
392
+ "x": "2025-11-08 00:00:00",
393
+ "ys": {
394
+ "qwen/qwen3-coder-480b-a35b-07-25": 551380391,
395
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 358816270,
396
+ "z-ai/glm-4.6": 199634971,
397
+ "moonshotai/kimi-k2-0905": 96057331,
398
+ "openai/gpt-oss-120b": 85739616,
399
+ "qwen/qwen3-235b-a22b-07-25": 75156217,
400
+ "deepseek/deepseek-r1-0528": 43052966,
401
+ "deepseek/deepseek-chat-v3-0324": 9522040
402
+ }
403
+ },
404
+ {
405
+ "x": "2025-11-09 00:00:00",
406
+ "ys": {
407
+ "qwen/qwen3-coder-480b-a35b-07-25": 510280046,
408
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 328400654,
409
+ "moonshotai/kimi-k2-0905": 194178392,
410
+ "qwen/qwen3-235b-a22b-07-25": 72029091,
411
+ "openai/gpt-oss-120b": 66444592,
412
+ "z-ai/glm-4.6": 59842241,
413
+ "deepseek/deepseek-r1-0528": 27591108,
414
+ "deepseek/deepseek-chat-v3-0324": 10278361
415
+ }
416
+ },
417
+ {
418
+ "x": "2025-11-10 00:00:00",
419
+ "ys": {
420
+ "qwen/qwen3-coder-480b-a35b-07-25": 575851041,
421
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 320376951,
422
+ "openai/gpt-oss-120b": 73688912,
423
+ "moonshotai/kimi-k2-0905": 69955412,
424
+ "z-ai/glm-4.6": 68087150,
425
+ "qwen/qwen3-235b-a22b-07-25": 60624113,
426
+ "deepseek/deepseek-r1-0528": 51212875,
427
+ "deepseek/deepseek-chat-v3-0324": 9970542
428
+ }
429
+ },
430
+ {
431
+ "x": "2025-11-11 00:00:00",
432
+ "ys": {
433
+ "qwen/qwen3-coder-480b-a35b-07-25": 504803877,
434
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 354190532,
435
+ "qwen/qwen3-235b-a22b-07-25": 222386754,
436
+ "z-ai/glm-4.6": 220099338,
437
+ "moonshotai/kimi-k2-0905": 123436043,
438
+ "deepseek/deepseek-r1-0528": 78812986,
439
+ "openai/gpt-oss-120b": 66806564,
440
+ "deepseek/deepseek-chat-v3-0324": 10690214
441
+ }
442
+ },
443
+ {
444
+ "x": "2025-11-12 00:00:00",
445
+ "ys": {
446
+ "qwen/qwen3-coder-480b-a35b-07-25": 394408271,
447
+ "z-ai/glm-4.6": 373460161,
448
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 263139034,
449
+ "qwen/qwen3-235b-a22b-07-25": 229854868,
450
+ "moonshotai/kimi-k2-0905": 117466242,
451
+ "deepseek/deepseek-r1-0528": 80557392,
452
+ "openai/gpt-oss-120b": 66844531,
453
+ "deepseek/deepseek-chat-v3-0324": 12518756
454
+ }
455
+ },
456
+ {
457
+ "x": "2025-11-13 00:00:00",
458
+ "ys": {
459
+ "z-ai/glm-4.6": 462087055,
460
+ "qwen/qwen3-coder-480b-a35b-07-25": 397922224,
461
+ "qwen/qwen3-235b-a22b-07-25": 349997830,
462
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 211250569,
463
+ "moonshotai/kimi-k2-0905": 99292698,
464
+ "openai/gpt-oss-120b": 65070330,
465
+ "deepseek/deepseek-r1-0528": 56512148,
466
+ "deepseek/deepseek-chat-v3-0324": 10626992
467
+ }
468
+ },
469
+ {
470
+ "x": "2025-11-14 00:00:00",
471
+ "ys": {
472
+ "qwen/qwen3-235b-a22b-07-25": 828552335,
473
+ "qwen/qwen3-coder-480b-a35b-07-25": 399665557,
474
+ "z-ai/glm-4.6": 383529420,
475
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 363626328,
476
+ "moonshotai/kimi-k2-0905": 112287776,
477
+ "deepseek/deepseek-r1-0528": 80157331,
478
+ "openai/gpt-oss-120b": 34376068,
479
+ "deepseek/deepseek-chat-v3-0324": 11378157
480
+ }
481
+ },
482
+ {
483
+ "x": "2025-11-15 00:00:00",
484
+ "ys": {
485
+ "qwen/qwen3-235b-a22b-07-25": 1051497428,
486
+ "z-ai/glm-4.6": 574454200,
487
+ "qwen/qwen3-coder-480b-a35b-07-25": 456579629,
488
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 263491935,
489
+ "deepseek/deepseek-r1-0528": 99615977,
490
+ "moonshotai/kimi-k2-0905": 35425833,
491
+ "openai/gpt-oss-120b": 27027156,
492
+ "deepseek/deepseek-chat-v3-0324": 9712064
493
+ }
494
+ },
495
+ {
496
+ "x": "2025-11-16 00:00:00",
497
+ "ys": {
498
+ "qwen/qwen3-235b-a22b-07-25": 778172548,
499
+ "qwen/qwen3-coder-480b-a35b-07-25": 333349336,
500
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 178538913,
501
+ "z-ai/glm-4.6": 116385532,
502
+ "deepseek/deepseek-r1-0528": 102273713,
503
+ "moonshotai/kimi-k2-0905": 60708552,
504
+ "openai/gpt-oss-120b": 20986973,
505
+ "deepseek/deepseek-chat-v3-0324": 10778740
506
+ }
507
+ },
508
+ {
509
+ "x": "2025-11-17 00:00:00",
510
+ "ys": {
511
+ "qwen/qwen3-235b-a22b-07-25": 1094758750,
512
+ "qwen/qwen3-coder-480b-a35b-07-25": 456063781,
513
+ "z-ai/glm-4.6": 300260812,
514
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 279651237,
515
+ "moonshotai/kimi-k2-0905": 129214165,
516
+ "deepseek/deepseek-r1-0528": 104912399,
517
+ "openai/gpt-oss-120b": 40398741,
518
+ "deepseek/deepseek-chat-v3-0324": 10876980,
519
+ "moonshotai/kimi-k2-thinking-20251106": 4019542
520
+ }
521
+ },
522
+ {
523
+ "x": "2025-11-18 00:00:00",
524
+ "ys": {
525
+ "qwen/qwen3-235b-a22b-07-25": 1085588060,
526
+ "qwen/qwen3-coder-480b-a35b-07-25": 493356307,
527
+ "z-ai/glm-4.6": 248838127,
528
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 194382426,
529
+ "deepseek/deepseek-r1-0528": 107138030,
530
+ "moonshotai/kimi-k2-0905": 102254277,
531
+ "openai/gpt-oss-120b": 40935659,
532
+ "moonshotai/kimi-k2-thinking-20251106": 28847722,
533
+ "deepseek/deepseek-chat-v3-0324": 9825721
534
+ }
535
+ },
536
+ {
537
+ "x": "2025-11-19 00:00:00",
538
+ "ys": {
539
+ "qwen/qwen3-coder-480b-a35b-07-25": 1039955846,
540
+ "qwen/qwen3-235b-a22b-07-25": 617265663,
541
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 235001461,
542
+ "moonshotai/kimi-k2-0905": 230501887,
543
+ "z-ai/glm-4.6": 152042000,
544
+ "deepseek/deepseek-r1-0528": 103219979,
545
+ "moonshotai/kimi-k2-thinking-20251106": 74445094,
546
+ "openai/gpt-oss-120b": 48796083,
547
+ "deepseek/deepseek-chat-v3-0324": 9812684
548
+ }
549
+ },
550
+ {
551
+ "x": "2025-11-20 00:00:00",
552
+ "ys": {
553
+ "qwen/qwen3-coder-480b-a35b-07-25": 519964266,
554
+ "qwen/qwen3-235b-a22b-07-25": 412622659,
555
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 238154399,
556
+ "moonshotai/kimi-k2-0905": 215085853,
557
+ "z-ai/glm-4.6": 138028303,
558
+ "deepseek/deepseek-r1-0528": 111135481,
559
+ "openai/gpt-oss-120b": 69451854,
560
+ "moonshotai/kimi-k2-thinking-20251106": 32225499,
561
+ "deepseek/deepseek-chat-v3-0324": 10310735
562
+ }
563
+ },
564
+ {
565
+ "x": "2025-11-21 00:00:00",
566
+ "ys": {
567
+ "qwen/qwen3-235b-a22b-07-25": 439444016,
568
+ "qwen/qwen3-coder-480b-a35b-07-25": 230970922,
569
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 123166800,
570
+ "deepseek/deepseek-r1-0528": 104107504,
571
+ "z-ai/glm-4.6": 74761137,
572
+ "moonshotai/kimi-k2-thinking-20251106": 53933280,
573
+ "openai/gpt-oss-120b": 37445704,
574
+ "moonshotai/kimi-k2-0905": 33267143,
575
+ "deepseek/deepseek-chat-v3-0324": 11554987
576
+ }
577
+ },
578
+ {
579
+ "x": "2025-11-22 00:00:00",
580
+ "ys": {
581
+ "deepseek/deepseek-r1-0528": 95368244,
582
+ "z-ai/glm-4.6": 59896437,
583
+ "qwen/qwen3-coder-480b-a35b-07-25": 31904301,
584
+ "deepseek/deepseek-chat-v3-0324": 26849701,
585
+ "moonshotai/kimi-k2-thinking-20251106": 13719912,
586
+ "openai/gpt-oss-120b": 10455415,
587
+ "qwen/qwen3-235b-a22b-07-25": 4789944,
588
+ "moonshotai/kimi-k2-0905": 4072922,
589
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 510112
590
+ }
591
+ },
592
+ {
593
+ "x": "2025-11-23 00:00:00",
594
+ "ys": {
595
+ "deepseek/deepseek-r1-0528": 96741454,
596
+ "z-ai/glm-4.6": 83290571,
597
+ "moonshotai/kimi-k2-thinking-20251106": 63012054,
598
+ "qwen/qwen3-coder-480b-a35b-07-25": 30032629,
599
+ "deepseek/deepseek-chat-v3-0324": 12433484,
600
+ "openai/gpt-oss-120b": 5176918,
601
+ "qwen/qwen3-235b-a22b-07-25": 4236012,
602
+ "moonshotai/kimi-k2-0905": 3223406,
603
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 376746
604
+ }
605
+ },
606
+ {
607
+ "x": "2025-11-24 00:00:00",
608
+ "ys": {
609
+ "deepseek/deepseek-r1-0528": 51177000,
610
+ "z-ai/glm-4.6": 35188660,
611
+ "openai/gpt-oss-120b": 31626220,
612
+ "qwen/qwen3-coder-480b-a35b-07-25": 28587733,
613
+ "moonshotai/kimi-k2-thinking-20251106": 25674697,
614
+ "qwen/qwen3-235b-a22b-07-25": 16132629,
615
+ "deepseek/deepseek-chat-v3-0324": 15060727,
616
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 8766233,
617
+ "moonshotai/kimi-k2-0905": 4364454
618
+ }
619
+ },
620
+ {
621
+ "x": "2025-11-25 00:00:00",
622
+ "ys": {
623
+ "openai/gpt-oss-120b": 164000684,
624
+ "qwen/qwen3-coder-480b-a35b-07-25": 130740653,
625
+ "deepseek/deepseek-chat-v3-0324": 95779870,
626
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 57488779,
627
+ "qwen/qwen3-235b-a22b-07-25": 50851012,
628
+ "moonshotai/kimi-k2-thinking-20251106": 26576458,
629
+ "z-ai/glm-4.6": 21953632,
630
+ "deepseek/deepseek-r1-0528": 18206585,
631
+ "moonshotai/kimi-k2-0905": 9200922
632
+ }
633
+ },
634
+ {
635
+ "x": "2025-11-26 00:00:00",
636
+ "ys": {
637
+ "qwen/qwen3-coder-480b-a35b-07-25": 489759133,
638
+ "deepseek/deepseek-chat-v3-0324": 273900962,
639
+ "openai/gpt-oss-120b": 185059316,
640
+ "deepseek/deepseek-r1-0528": 170065350,
641
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 136981886,
642
+ "qwen/qwen3-235b-a22b-07-25": 110282502,
643
+ "moonshotai/kimi-k2-thinking-20251106": 99864264,
644
+ "z-ai/glm-4.6": 76153596,
645
+ "moonshotai/kimi-k2-0905": 29491142
646
+ }
647
+ },
648
+ {
649
+ "x": "2025-11-27 00:00:00",
650
+ "ys": {
651
+ "qwen/qwen3-coder-480b-a35b-07-25": 493636022,
652
+ "deepseek/deepseek-chat-v3-0324": 262475272,
653
+ "qwen/qwen3-235b-a22b-07-25": 203442056,
654
+ "deepseek/deepseek-r1-0528": 161741524,
655
+ "openai/gpt-oss-120b": 129337929,
656
+ "moonshotai/kimi-k2-thinking-20251106": 73426553,
657
+ "z-ai/glm-4.6": 60058918,
658
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 43551658,
659
+ "moonshotai/kimi-k2-0905": 31088372
660
+ }
661
+ },
662
+ {
663
+ "x": "2025-11-28 00:00:00",
664
+ "ys": {
665
+ "qwen/qwen3-235b-a22b-07-25": 361718511,
666
+ "deepseek/deepseek-r1-0528": 353601487,
667
+ "z-ai/glm-4.6": 309399932,
668
+ "qwen/qwen3-coder-480b-a35b-07-25": 289685899,
669
+ "deepseek/deepseek-chat-v3-0324": 256251656,
670
+ "moonshotai/kimi-k2-thinking-20251106": 75570197,
671
+ "openai/gpt-oss-120b": 52284099,
672
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 49332054,
673
+ "moonshotai/kimi-k2-0905": 28333080
674
+ }
675
+ },
676
+ {
677
+ "x": "2025-11-29 00:00:00",
678
+ "ys": {
679
+ "deepseek/deepseek-chat-v3-0324": 257537342,
680
+ "z-ai/glm-4.6": 209812069,
681
+ "qwen/qwen3-coder-480b-a35b-07-25": 191275021,
682
+ "deepseek/deepseek-r1-0528": 167629312,
683
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 84880914,
684
+ "qwen/qwen3-235b-a22b-07-25": 71822523,
685
+ "moonshotai/kimi-k2-thinking-20251106": 42280948,
686
+ "openai/gpt-oss-120b": 41743751,
687
+ "moonshotai/kimi-k2-0905": 32971298
688
+ }
689
+ },
690
+ {
691
+ "x": "2025-11-30 00:00:00",
692
+ "ys": {
693
+ "qwen/qwen3-235b-a22b-07-25": 311544196,
694
+ "deepseek/deepseek-chat-v3-0324": 267029119,
695
+ "qwen/qwen3-coder-480b-a35b-07-25": 249851944,
696
+ "z-ai/glm-4.6": 215243679,
697
+ "deepseek/deepseek-r1-0528": 169082041,
698
+ "openai/gpt-oss-120b": 88438074,
699
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 81525388,
700
+ "moonshotai/kimi-k2-thinking-20251106": 48549223,
701
+ "moonshotai/kimi-k2-0905": 37736315
702
+ }
703
+ },
704
+ {
705
+ "x": "2025-12-01 00:00:00",
706
+ "ys": {
707
+ "qwen/qwen3-coder-480b-a35b-07-25": 324276283,
708
+ "deepseek/deepseek-chat-v3-0324": 271485157,
709
+ "deepseek/deepseek-r1-0528": 168118288,
710
+ "openai/gpt-oss-120b": 146931035,
711
+ "z-ai/glm-4.6": 122151759,
712
+ "qwen/qwen3-235b-a22b-07-25": 119197942,
713
+ "moonshotai/kimi-k2-0905": 117680658,
714
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 104456990,
715
+ "moonshotai/kimi-k2-thinking-20251106": 76282790
716
+ }
717
+ },
718
+ {
719
+ "x": "2025-12-02 00:00:00",
720
+ "ys": {
721
+ "qwen/qwen3-coder-480b-a35b-07-25": 345968320,
722
+ "deepseek/deepseek-chat-v3-0324": 280062138,
723
+ "openai/gpt-oss-120b": 220124527,
724
+ "deepseek/deepseek-r1-0528": 170411735,
725
+ "z-ai/glm-4.6": 149764220,
726
+ "qwen/qwen3-235b-a22b-07-25": 123397709,
727
+ "moonshotai/kimi-k2-thinking-20251106": 73643140,
728
+ "moonshotai/kimi-k2-0905": 56623018,
729
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 53282841
730
+ }
731
+ },
732
+ {
733
+ "x": "2025-12-03 00:00:00",
734
+ "ys": {
735
+ "qwen/qwen3-coder-480b-a35b-07-25": 386153738,
736
+ "qwen/qwen3-235b-a22b-07-25": 323840610,
737
+ "deepseek/deepseek-chat-v3-0324": 300702177,
738
+ "openai/gpt-oss-120b": 279948547,
739
+ "deepseek/deepseek-r1-0528": 167081312,
740
+ "z-ai/glm-4.6": 119577255,
741
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 85776739,
742
+ "moonshotai/kimi-k2-thinking-20251106": 66570389,
743
+ "moonshotai/kimi-k2-0905": 17999923
744
+ }
745
+ },
746
+ {
747
+ "x": "2025-12-04 00:00:00",
748
+ "ys": {
749
+ "openai/gpt-oss-120b": 1191537143,
750
+ "qwen/qwen3-235b-a22b-07-25": 536560187,
751
+ "qwen/qwen3-coder-480b-a35b-07-25": 331812654,
752
+ "deepseek/deepseek-chat-v3-0324": 264412375,
753
+ "deepseek/deepseek-r1-0528": 132217478,
754
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 124582155,
755
+ "moonshotai/kimi-k2-thinking-20251106": 65747517,
756
+ "z-ai/glm-4.6": 55715940,
757
+ "deepseek/deepseek-v3.2-20251201": 54966779,
758
+ "Others": 24811503
759
+ }
760
+ },
761
+ {
762
+ "x": "2025-12-05 00:00:00",
763
+ "ys": {
764
+ "openai/gpt-oss-120b": 2683411110,
765
+ "qwen/qwen3-coder-480b-a35b-07-25": 774287529,
766
+ "qwen/qwen3-235b-a22b-07-25": 492217360,
767
+ "deepseek/deepseek-chat-v3-0324": 296804693,
768
+ "deepseek/deepseek-v3.2-20251201": 180563844,
769
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 112634070,
770
+ "deepseek/deepseek-r1-0528": 95475892,
771
+ "z-ai/glm-4.6": 67048578,
772
+ "moonshotai/kimi-k2-thinking-20251106": 27820220,
773
+ "Others": 12837457
774
+ }
775
+ },
776
+ {
777
+ "x": "2025-12-06 00:00:00",
778
+ "ys": {
779
+ "openai/gpt-oss-120b": 2193028186,
780
+ "deepseek/deepseek-chat-v3-0324": 190139521,
781
+ "qwen/qwen3-235b-a22b-07-25": 188658448,
782
+ "deepseek/deepseek-v3.2-20251201": 145739690,
783
+ "qwen/qwen3-coder-480b-a35b-07-25": 68105183,
784
+ "z-ai/glm-4.6": 52403608,
785
+ "moonshotai/kimi-k2-thinking-20251106": 49884524,
786
+ "moonshotai/kimi-k2-0905": 16008120,
787
+ "deepseek/deepseek-r1-0528": 7550588,
788
+ "Others": 3436890
789
+ }
790
+ },
791
+ {
792
+ "x": "2025-12-07 00:00:00",
793
+ "ys": {
794
+ "openai/gpt-oss-120b": 1414668103,
795
+ "deepseek/deepseek-v3.2-20251201": 149010642,
796
+ "z-ai/glm-4.6": 37955018,
797
+ "deepseek/deepseek-chat-v3-0324": 29988144,
798
+ "moonshotai/kimi-k2-thinking-20251106": 29149421,
799
+ "deepseek/deepseek-r1-0528": 8532883,
800
+ "moonshotai/kimi-k2-0905": 8477790,
801
+ "qwen/qwen3-coder-480b-a35b-07-25": 1156,
802
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 880,
803
+ "Others": 38
804
+ }
805
+ },
806
+ {
807
+ "x": "2025-12-08 00:00:00",
808
+ "ys": {
809
+ "openai/gpt-oss-120b": 1185347152,
810
+ "deepseek/deepseek-v3.2-20251201": 143943637,
811
+ "z-ai/glm-4.6": 54067442,
812
+ "moonshotai/kimi-k2-thinking-20251106": 52878363,
813
+ "deepseek/deepseek-chat-v3-0324": 39508900,
814
+ "moonshotai/kimi-k2-0905": 16830989,
815
+ "deepseek/deepseek-r1-0528": 11782522,
816
+ "qwen/qwen3-coder-480b-a35b-07-25": 1154,
817
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 707,
818
+ "Others": 147
819
+ }
820
+ },
821
+ {
822
+ "x": "2025-12-09 00:00:00",
823
+ "ys": {
824
+ "openai/gpt-oss-120b": 938169850,
825
+ "deepseek/deepseek-v3.2-20251201": 143097361,
826
+ "z-ai/glm-4.6": 56311052,
827
+ "deepseek/deepseek-chat-v3-0324": 43937359,
828
+ "moonshotai/kimi-k2-thinking-20251106": 36740986,
829
+ "deepseek/deepseek-r1-0528": 20630390,
830
+ "moonshotai/kimi-k2-0905": 17028591,
831
+ "qwen/qwen3-coder-480b-a35b-07-25": 617,
832
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 537,
833
+ "Others": 132
834
+ }
835
+ },
836
+ {
837
+ "x": "2025-12-10 00:00:00",
838
+ "ys": {
839
+ "openai/gpt-oss-120b": 2068993718,
840
+ "deepseek/deepseek-v3.2-20251201": 1263282631,
841
+ "moonshotai/kimi-k2-0905": 68651275,
842
+ "z-ai/glm-4.6": 47731751,
843
+ "moonshotai/kimi-k2-thinking-20251106": 43904063,
844
+ "deepseek/deepseek-chat-v3-0324": 33806700,
845
+ "deepseek/deepseek-r1-0528": 15258966,
846
+ "qwen/qwen3-235b-a22b-07-25": 2533,
847
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 595,
848
+ "Others": 315
849
+ }
850
+ },
851
+ {
852
+ "x": "2025-12-11 00:00:00",
853
+ "ys": {
854
+ "openai/gpt-oss-120b": 2261487293,
855
+ "moonshotai/kimi-k2-0905": 185509270,
856
+ "z-ai/glm-4.6": 46218106,
857
+ "deepseek/deepseek-chat-v3-0324": 33327999,
858
+ "moonshotai/kimi-k2-thinking-20251106": 30795710,
859
+ "deepseek/deepseek-v3.2-20251201": 3973965,
860
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 531,
861
+ "qwen/qwen3-coder-480b-a35b-07-25": 402
862
+ }
863
+ },
864
+ {
865
+ "x": "2025-12-12 00:00:00",
866
+ "ys": {
867
+ "openai/gpt-oss-120b": 2872752839,
868
+ "moonshotai/kimi-k2-0905": 175146144,
869
+ "deepseek/deepseek-chat-v3-0324": 38634281,
870
+ "z-ai/glm-4.6": 38512650,
871
+ "moonshotai/kimi-k2-thinking-20251106": 34930088,
872
+ "deepseek/deepseek-v3.2-20251201": 2942841,
873
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 429,
874
+ "qwen/qwen3-coder-480b-a35b-07-25": 258
875
+ }
876
+ },
877
+ {
878
+ "x": "2025-12-13 00:00:00",
879
+ "ys": {
880
+ "openai/gpt-oss-120b": 2294317345,
881
+ "moonshotai/kimi-k2-0905": 127452827,
882
+ "deepseek/deepseek-chat-v3-0324": 37819127,
883
+ "moonshotai/kimi-k2-thinking-20251106": 21199375,
884
+ "z-ai/glm-4.6": 5706617,
885
+ "deepseek/deepseek-v3.2-20251201": 2418765,
886
+ "qwen/qwen3-coder-480b-a35b-07-25": 420,
887
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 394
888
+ }
889
+ },
890
+ {
891
+ "x": "2025-12-14 00:00:00",
892
+ "ys": {
893
+ "openai/gpt-oss-120b": 3347706884,
894
+ "moonshotai/kimi-k2-0905": 97082099,
895
+ "deepseek/deepseek-chat-v3-0324": 42685777,
896
+ "moonshotai/kimi-k2-thinking-20251106": 38588799,
897
+ "deepseek/deepseek-v3.2-20251201": 3578794,
898
+ "z-ai/glm-4.6": 2431996,
899
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 411,
900
+ "qwen/qwen3-coder-480b-a35b-07-25": 294
901
+ }
902
+ },
903
+ {
904
+ "x": "2025-12-15 00:00:00",
905
+ "ys": {
906
+ "openai/gpt-oss-120b": 2197784207,
907
+ "moonshotai/kimi-k2-0905": 78493125,
908
+ "deepseek/deepseek-chat-v3-0324": 35747970,
909
+ "moonshotai/kimi-k2-thinking-20251106": 32842176,
910
+ "deepseek/deepseek-v3.2-20251201": 6931500,
911
+ "z-ai/glm-4.6": 196384,
912
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 426,
913
+ "qwen/qwen3-coder-480b-a35b-07-25": 195
914
+ }
915
+ },
916
+ {
917
+ "x": "2025-12-16 00:00:00",
918
+ "ys": {
919
+ "openai/gpt-oss-120b": 80479518,
920
+ "deepseek/deepseek-v3.2-20251201": 62408009,
921
+ "deepseek/deepseek-chat-v3-0324": 39432108,
922
+ "moonshotai/kimi-k2-thinking-20251106": 30160805,
923
+ "z-ai/glm-4.6": 259203,
924
+ "moonshotai/kimi-k2-0905": 55988,
925
+ "qwen/qwen3-coder-480b-a35b-07-25": 429,
926
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 422
927
+ }
928
+ },
929
+ {
930
+ "x": "2025-12-17 00:00:00",
931
+ "ys": {
932
+ "openai/gpt-oss-120b": 136181969,
933
+ "deepseek/deepseek-chat-v3-0324": 39522872,
934
+ "moonshotai/kimi-k2-thinking-20251106": 38275227,
935
+ "deepseek/deepseek-v3.2-20251201": 19771016,
936
+ "moonshotai/kimi-k2-0905": 798434,
937
+ "z-ai/glm-4.6": 605123,
938
+ "qwen/qwen3-coder-480b-a35b-07-25": 305841,
939
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 120
940
+ }
941
+ },
942
+ {
943
+ "x": "2025-12-18 00:00:00",
944
+ "ys": {
945
+ "openai/gpt-oss-120b": 209772483,
946
+ "deepseek/deepseek-chat-v3-0324": 36934468,
947
+ "moonshotai/kimi-k2-thinking-20251106": 35895874,
948
+ "deepseek/deepseek-v3.2-20251201": 15302530,
949
+ "z-ai/glm-4.6": 78457,
950
+ "moonshotai/kimi-k2-0905": 15571,
951
+ "qwen/qwen3-coder-480b-a35b-07-25": 375,
952
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 305
953
+ }
954
+ },
955
+ {
956
+ "x": "2025-12-19 00:00:00",
957
+ "ys": {
958
+ "openai/gpt-oss-120b": 97126369,
959
+ "deepseek/deepseek-chat-v3-0324": 44207922,
960
+ "moonshotai/kimi-k2-thinking-20251106": 27373951,
961
+ "deepseek/deepseek-v3.2-20251201": 16363666,
962
+ "moonshotai/kimi-k2-0905": 14545,
963
+ "qwen/qwen3-coder-480b-a35b-07-25": 6147,
964
+ "z-ai/glm-4.6": 368,
965
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 80
966
+ }
967
+ },
968
+ {
969
+ "x": "2025-12-20 00:00:00",
970
+ "ys": {
971
+ "deepseek/deepseek-chat-v3-0324": 49309280,
972
+ "moonshotai/kimi-k2-thinking-20251106": 45707386,
973
+ "openai/gpt-oss-120b": 15820758,
974
+ "deepseek/deepseek-v3.2-20251201": 14032988,
975
+ "z-ai/glm-4.6": 26097,
976
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 1469,
977
+ "qwen/qwen3-coder-480b-a35b-07-25": 291,
978
+ "moonshotai/kimi-k2-0905": 38
979
+ }
980
+ },
981
+ {
982
+ "x": "2025-12-21 00:00:00",
983
+ "ys": {
984
+ "deepseek/deepseek-chat-v3-0324": 47314483,
985
+ "openai/gpt-oss-120b": 24428993,
986
+ "moonshotai/kimi-k2-thinking-20251106": 21743654,
987
+ "deepseek/deepseek-v3.2-20251201": 19567064,
988
+ "moonshotai/kimi-k2-0905": 56643,
989
+ "z-ai/glm-4.6": 13993,
990
+ "qwen/qwen3-coder-480b-a35b-07-25": 369,
991
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 104
992
+ }
993
+ },
994
+ {
995
+ "x": "2025-12-22 00:00:00",
996
+ "ys": {
997
+ "deepseek/deepseek-chat-v3-0324": 58799643,
998
+ "openai/gpt-oss-120b": 45349585,
999
+ "moonshotai/kimi-k2-thinking-20251106": 33811454,
1000
+ "deepseek/deepseek-v3.2-20251201": 20471171,
1001
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 26623,
1002
+ "z-ai/glm-4.6": 21903,
1003
+ "qwen/qwen3-coder-480b-a35b-07-25": 238,
1004
+ "moonshotai/kimi-k2-0905": 211
1005
+ }
1006
+ },
1007
+ {
1008
+ "x": "2025-12-23 00:00:00",
1009
+ "ys": {
1010
+ "deepseek/deepseek-chat-v3-0324": 58485689,
1011
+ "openai/gpt-oss-120b": 50371637,
1012
+ "moonshotai/kimi-k2-thinking-20251106": 38459274,
1013
+ "deepseek/deepseek-v3.2-20251201": 12956093,
1014
+ "moonshotai/kimi-k2-0905": 76868,
1015
+ "z-ai/glm-4.6": 933,
1016
+ "qwen/qwen3-coder-480b-a35b-07-25": 413,
1017
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 80
1018
+ }
1019
+ },
1020
+ {
1021
+ "x": "2025-12-24 00:00:00",
1022
+ "ys": {
1023
+ "deepseek/deepseek-v3.2-20251201": 63333696,
1024
+ "deepseek/deepseek-chat-v3-0324": 52990827,
1025
+ "moonshotai/kimi-k2-thinking-20251106": 50583525,
1026
+ "openai/gpt-oss-120b": 40726921,
1027
+ "moonshotai/kimi-k2-0905": 5936,
1028
+ "z-ai/glm-4.6": 1186,
1029
+ "qwen/qwen3-coder-480b-a35b-07-25": 571,
1030
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 148
1031
+ }
1032
+ },
1033
+ {
1034
+ "x": "2025-12-25 00:00:00",
1035
+ "ys": {
1036
+ "moonshotai/kimi-k2-thinking-20251106": 147175617,
1037
+ "deepseek/deepseek-v3.2-20251201": 61942171,
1038
+ "deepseek/deepseek-chat-v3-0324": 58275409,
1039
+ "openai/gpt-oss-120b": 56539669,
1040
+ "moonshotai/kimi-k2-0905": 4695,
1041
+ "z-ai/glm-4.6": 2300,
1042
+ "qwen/qwen3-coder-480b-a35b-07-25": 488,
1043
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 210
1044
+ }
1045
+ },
1046
+ {
1047
+ "x": "2025-12-26 00:00:00",
1048
+ "ys": {
1049
+ "moonshotai/kimi-k2-thinking-20251106": 103189486,
1050
+ "openai/gpt-oss-120b": 80961297,
1051
+ "deepseek/deepseek-v3.2-20251201": 74654841,
1052
+ "deepseek/deepseek-chat-v3-0324": 36382377,
1053
+ "z-ai/glm-4.6": 95767,
1054
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 68682,
1055
+ "moonshotai/kimi-k2-0905": 8854,
1056
+ "qwen/qwen3-coder-480b-a35b-07-25": 2490
1057
+ }
1058
+ },
1059
+ {
1060
+ "x": "2025-12-27 00:00:00",
1061
+ "ys": {
1062
+ "deepseek/deepseek-v3.2-20251201": 80908058,
1063
+ "moonshotai/kimi-k2-thinking-20251106": 51634980,
1064
+ "openai/gpt-oss-120b": 37519180,
1065
+ "deepseek/deepseek-chat-v3-0324": 32919547,
1066
+ "z-ai/glm-4.6": 97517,
1067
+ "moonshotai/kimi-k2-0905": 27095,
1068
+ "qwen/qwen3-coder-480b-a35b-07-25": 367,
1069
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 194
1070
+ }
1071
+ },
1072
+ {
1073
+ "x": "2025-12-28 00:00:00",
1074
+ "ys": {
1075
+ "deepseek/deepseek-v3.2-20251201": 89315394,
1076
+ "openai/gpt-oss-120b": 40506269,
1077
+ "moonshotai/kimi-k2-thinking-20251106": 31596072,
1078
+ "deepseek/deepseek-chat-v3-0324": 31519431,
1079
+ "moonshotai/kimi-k2-0905": 19020,
1080
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 14825,
1081
+ "z-ai/glm-4.6": 738,
1082
+ "qwen/qwen3-coder-480b-a35b-07-25": 268
1083
+ }
1084
+ },
1085
+ {
1086
+ "x": "2025-12-29 00:00:00",
1087
+ "ys": {
1088
+ "openai/gpt-oss-120b": 139195426,
1089
+ "deepseek/deepseek-v3.2-20251201": 87067654,
1090
+ "moonshotai/kimi-k2-thinking-20251106": 50057003,
1091
+ "deepseek/deepseek-chat-v3-0324": 36433986,
1092
+ "z-ai/glm-4.6": 382483,
1093
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 94378,
1094
+ "moonshotai/kimi-k2-0905": 6711,
1095
+ "qwen/qwen3-coder-480b-a35b-07-25": 276
1096
+ }
1097
+ },
1098
+ {
1099
+ "x": "2025-12-30 00:00:00",
1100
+ "ys": {
1101
+ "openai/gpt-oss-120b": 166817432,
1102
+ "deepseek/deepseek-v3.2-20251201": 84910542,
1103
+ "moonshotai/kimi-k2-thinking-20251106": 39503804,
1104
+ "deepseek/deepseek-chat-v3-0324": 33177214,
1105
+ "moonshotai/kimi-k2-0905": 1633450,
1106
+ "qwen/qwen3-coder-480b-a35b-07-25": 306242,
1107
+ "z-ai/glm-4.6": 176737,
1108
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 55147
1109
+ }
1110
+ },
1111
+ {
1112
+ "x": "2025-12-31 00:00:00",
1113
+ "ys": {
1114
+ "deepseek/deepseek-v3.2-20251201": 142484694,
1115
+ "openai/gpt-oss-120b": 103362527,
1116
+ "moonshotai/kimi-k2-thinking-20251106": 48042057,
1117
+ "deepseek/deepseek-chat-v3-0324": 36997531,
1118
+ "moonshotai/kimi-k2-0905": 2129209,
1119
+ "z-ai/glm-4.6": 14079,
1120
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 13359,
1121
+ "qwen/qwen3-coder-480b-a35b-07-25": 451
1122
+ }
1123
+ },
1124
+ {
1125
+ "x": "2026-01-01 00:00:00",
1126
+ "ys": {
1127
+ "deepseek/deepseek-v3.2-20251201": 146616380,
1128
+ "deepseek/deepseek-chat-v3-0324": 32797436,
1129
+ "moonshotai/kimi-k2-thinking-20251106": 30640865,
1130
+ "openai/gpt-oss-120b": 19132295,
1131
+ "moonshotai/kimi-k2-0905": 657550,
1132
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 39893,
1133
+ "z-ai/glm-4.6": 19770,
1134
+ "qwen/qwen3-coder-480b-a35b-07-25": 393
1135
+ }
1136
+ },
1137
+ {
1138
+ "x": "2026-01-02 00:00:00",
1139
+ "ys": {
1140
+ "deepseek/deepseek-v3.2-20251201": 87794864,
1141
+ "openai/gpt-oss-120b": 60939311,
1142
+ "moonshotai/kimi-k2-thinking-20251106": 39518530,
1143
+ "deepseek/deepseek-chat-v3-0324": 35403297,
1144
+ "moonshotai/kimi-k2-0905": 138875,
1145
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 54088,
1146
+ "z-ai/glm-4.6": 51460,
1147
+ "qwen/qwen3-coder-480b-a35b-07-25": 245
1148
+ }
1149
+ },
1150
+ {
1151
+ "x": "2026-01-03 00:00:00",
1152
+ "ys": {
1153
+ "openai/gpt-oss-120b": 104276762,
1154
+ "deepseek/deepseek-v3.2-20251201": 84701637,
1155
+ "moonshotai/kimi-k2-thinking-20251106": 51426769,
1156
+ "deepseek/deepseek-chat-v3-0324": 36299095,
1157
+ "z-ai/glm-4.6": 35136,
1158
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 13349,
1159
+ "moonshotai/kimi-k2-0905": 373,
1160
+ "qwen/qwen3-coder-480b-a35b-07-25": 368
1161
+ }
1162
+ },
1163
+ {
1164
+ "x": "2026-01-04 00:00:00",
1165
+ "ys": {
1166
+ "deepseek/deepseek-v3.2-20251201": 89176469,
1167
+ "openai/gpt-oss-120b": 83858278,
1168
+ "moonshotai/kimi-k2-thinking-20251106": 78793707,
1169
+ "deepseek/deepseek-chat-v3-0324": 34492507,
1170
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 26692,
1171
+ "z-ai/glm-4.6": 14170,
1172
+ "moonshotai/kimi-k2-0905": 555,
1173
+ "qwen/qwen3-coder-480b-a35b-07-25": 426
1174
+ }
1175
+ },
1176
+ {
1177
+ "x": "2026-01-05 00:00:00",
1178
+ "ys": {
1179
+ "openai/gpt-oss-120b": 453366991,
1180
+ "deepseek/deepseek-v3.2-20251201": 72058809,
1181
+ "moonshotai/kimi-k2-thinking-20251106": 39449549,
1182
+ "deepseek/deepseek-chat-v3-0324": 30612719,
1183
+ "z-ai/glm-4.6": 12651,
1184
+ "moonshotai/kimi-k2-0905": 752,
1185
+ "qwen/qwen3-coder-480b-a35b-07-25": 365,
1186
+ "qwen/qwen3-coder-480b-a35b-07-25:exacto": 182
1187
+ }
1188
+ }
1189
+ ],
1190
+ "fetched_at": "2026-01-06T00:09:40.187294",
1191
+ "success": true
1192
+ }
data/providers/fireworks.json ADDED
@@ -0,0 +1,1358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "provider": "fireworks",
3
+ "url": "https://openrouter.ai/provider/fireworks",
4
+ "data": [
5
+ {
6
+ "x": "2025-10-09 00:00:00",
7
+ "ys": {
8
+ "openai/gpt-oss-20b": 2972590048,
9
+ "qwen/qwen3-235b-a22b-07-25": 1448777104,
10
+ "deepseek/deepseek-chat-v3.1": 1168272896,
11
+ "openai/gpt-oss-120b": 790058284,
12
+ "qwen/qwen3-coder-480b-a35b-07-25": 411289829,
13
+ "moonshotai/kimi-k2": 325374546,
14
+ "deepseek/deepseek-chat-v3-0324": 309996913,
15
+ "deepseek/deepseek-r1-0528": 274995566,
16
+ "moonshotai/kimi-k2-0905": 205302741,
17
+ "Others": 748350090
18
+ }
19
+ },
20
+ {
21
+ "x": "2025-10-10 00:00:00",
22
+ "ys": {
23
+ "openai/gpt-oss-20b": 2429706218,
24
+ "qwen/qwen3-235b-a22b-07-25": 1436965613,
25
+ "deepseek/deepseek-chat-v3.1": 1427570358,
26
+ "qwen/qwen3-coder-480b-a35b-07-25": 821947949,
27
+ "openai/gpt-oss-120b": 630105551,
28
+ "moonshotai/kimi-k2": 357623946,
29
+ "deepseek/deepseek-chat-v3-0324": 291622585,
30
+ "deepseek/deepseek-r1-0528": 247572408,
31
+ "moonshotai/kimi-k2-0905": 179768905,
32
+ "Others": 661499844
33
+ }
34
+ },
35
+ {
36
+ "x": "2025-10-11 00:00:00",
37
+ "ys": {
38
+ "openai/gpt-oss-20b": 1966754042,
39
+ "deepseek/deepseek-chat-v3.1": 1600248424,
40
+ "qwen/qwen3-235b-a22b-07-25": 1321595415,
41
+ "qwen/qwen3-coder-480b-a35b-07-25": 982842392,
42
+ "moonshotai/kimi-k2": 356871487,
43
+ "deepseek/deepseek-r1-0528": 308511694,
44
+ "deepseek/deepseek-chat-v3-0324": 279697930,
45
+ "openai/gpt-oss-120b": 220520551,
46
+ "moonshotai/kimi-k2-0905": 152243259,
47
+ "Others": 459567784
48
+ }
49
+ },
50
+ {
51
+ "x": "2025-10-12 00:00:00",
52
+ "ys": {
53
+ "openai/gpt-oss-20b": 3128683940,
54
+ "deepseek/deepseek-chat-v3.1": 1778132502,
55
+ "qwen/qwen3-235b-a22b-07-25": 1286076051,
56
+ "moonshotai/kimi-k2": 351642637,
57
+ "deepseek/deepseek-chat-v3-0324": 334368619,
58
+ "qwen/qwen3-coder-480b-a35b-07-25": 323473581,
59
+ "deepseek/deepseek-r1-0528": 272052572,
60
+ "moonshotai/kimi-k2-0905": 126185681,
61
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 101762927,
62
+ "Others": 575810684
63
+ }
64
+ },
65
+ {
66
+ "x": "2025-10-13 00:00:00",
67
+ "ys": {
68
+ "openai/gpt-oss-20b": 3468038629,
69
+ "deepseek/deepseek-chat-v3.1": 1959559860,
70
+ "qwen/qwen3-235b-a22b-07-25": 1277942566,
71
+ "qwen/qwen3-coder-480b-a35b-07-25": 427450011,
72
+ "openai/gpt-oss-120b": 391854735,
73
+ "moonshotai/kimi-k2": 377352299,
74
+ "deepseek/deepseek-chat-v3-0324": 325095180,
75
+ "deepseek/deepseek-r1-0528": 281079147,
76
+ "moonshotai/kimi-k2-0905": 141879709,
77
+ "Others": 752491150
78
+ }
79
+ },
80
+ {
81
+ "x": "2025-10-14 00:00:00",
82
+ "ys": {
83
+ "deepseek/deepseek-chat-v3.1": 2652875732,
84
+ "qwen/qwen3-235b-a22b-07-25": 1329368135,
85
+ "openai/gpt-oss-20b": 1210159478,
86
+ "openai/gpt-oss-120b": 551175158,
87
+ "moonshotai/kimi-k2": 394181641,
88
+ "qwen/qwen3-coder-480b-a35b-07-25": 376982418,
89
+ "deepseek/deepseek-chat-v3-0324": 288826834,
90
+ "deepseek/deepseek-r1-0528": 238825758,
91
+ "qwen/qwen2.5-vl-32b-instruct": 194346204,
92
+ "Others": 757913354
93
+ }
94
+ },
95
+ {
96
+ "x": "2025-10-15 00:00:00",
97
+ "ys": {
98
+ "deepseek/deepseek-chat-v3.1": 2252471991,
99
+ "qwen/qwen3-235b-a22b-07-25": 1241978559,
100
+ "qwen/qwen3-coder-480b-a35b-07-25": 452798606,
101
+ "moonshotai/kimi-k2": 442644072,
102
+ "deepseek/deepseek-chat-v3-0324": 339010576,
103
+ "deepseek/deepseek-r1-0528": 258537460,
104
+ "moonshotai/kimi-k2-0905": 240140433,
105
+ "openai/gpt-oss-120b": 198285877,
106
+ "qwen/qwen3-235b-a22b-04-28": 131048752,
107
+ "Others": 648599815
108
+ }
109
+ },
110
+ {
111
+ "x": "2025-10-16 00:00:00",
112
+ "ys": {
113
+ "deepseek/deepseek-chat-v3.1": 2600546721,
114
+ "qwen/qwen3-235b-a22b-07-25": 1451650898,
115
+ "moonshotai/kimi-k2": 431611961,
116
+ "moonshotai/kimi-k2-0905": 419517060,
117
+ "deepseek/deepseek-chat-v3-0324": 353379579,
118
+ "qwen/qwen3-coder-480b-a35b-07-25": 329727139,
119
+ "deepseek/deepseek-r1-0528": 304490603,
120
+ "meta-llama/llama-3.1-70b-instruct": 303791804,
121
+ "openai/gpt-oss-120b": 272305447,
122
+ "Others": 465266879
123
+ }
124
+ },
125
+ {
126
+ "x": "2025-10-17 00:00:00",
127
+ "ys": {
128
+ "deepseek/deepseek-chat-v3.1": 1781940554,
129
+ "qwen/qwen3-235b-a22b-07-25": 1298542548,
130
+ "moonshotai/kimi-k2": 458457512,
131
+ "deepseek/deepseek-r1-0528": 332249045,
132
+ "deepseek/deepseek-chat-v3-0324": 310692021,
133
+ "openai/gpt-oss-120b": 255927226,
134
+ "qwen/qwen3-coder-480b-a35b-07-25": 252694475,
135
+ "moonshotai/kimi-k2-0905": 228327382,
136
+ "meta-llama/llama-3.1-70b-instruct": 177400776,
137
+ "Others": 474897874
138
+ }
139
+ },
140
+ {
141
+ "x": "2025-10-18 00:00:00",
142
+ "ys": {
143
+ "qwen/qwen3-235b-a22b-07-25": 1393820784,
144
+ "deepseek/deepseek-chat-v3.1": 953621322,
145
+ "moonshotai/kimi-k2": 412179819,
146
+ "deepseek/deepseek-r1-0528": 271422970,
147
+ "deepseek/deepseek-chat-v3-0324": 260594996,
148
+ "qwen/qwen3-235b-a22b-04-28": 231705506,
149
+ "openai/gpt-oss-120b": 204618001,
150
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 161053157,
151
+ "meta-llama/llama-4-scout-17b-16e-instruct": 151932071,
152
+ "Others": 409965899
153
+ }
154
+ },
155
+ {
156
+ "x": "2025-10-19 00:00:00",
157
+ "ys": {
158
+ "qwen/qwen3-235b-a22b-07-25": 1326033828,
159
+ "deepseek/deepseek-chat-v3.1": 752461480,
160
+ "moonshotai/kimi-k2": 435551551,
161
+ "deepseek/deepseek-r1-0528": 295120983,
162
+ "deepseek/deepseek-chat-v3-0324": 271539381,
163
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 200095491,
164
+ "openai/gpt-oss-120b": 187697083,
165
+ "qwen/qwen3-235b-a22b-04-28": 132084285,
166
+ "meta-llama/llama-4-scout-17b-16e-instruct": 127090263,
167
+ "Others": 314589550
168
+ }
169
+ },
170
+ {
171
+ "x": "2025-10-20 00:00:00",
172
+ "ys": {
173
+ "qwen/qwen3-235b-a22b-07-25": 1335313309,
174
+ "deepseek/deepseek-chat-v3.1": 1315696295,
175
+ "moonshotai/kimi-k2": 406565477,
176
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 356921027,
177
+ "deepseek/deepseek-r1-0528": 334772921,
178
+ "deepseek/deepseek-chat-v3-0324": 301182705,
179
+ "openai/gpt-oss-120b": 238530777,
180
+ "meta-llama/llama-4-scout-17b-16e-instruct": 190183671,
181
+ "moonshotai/kimi-k2-0905": 147264257,
182
+ "Others": 444371874
183
+ }
184
+ },
185
+ {
186
+ "x": "2025-10-21 00:00:00",
187
+ "ys": {
188
+ "deepseek/deepseek-chat-v3.1": 1929070460,
189
+ "qwen/qwen3-235b-a22b-07-25": 1360231885,
190
+ "moonshotai/kimi-k2": 372882303,
191
+ "openai/gpt-oss-120b": 337580992,
192
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 320966214,
193
+ "deepseek/deepseek-chat-v3-0324": 256770387,
194
+ "deepseek/deepseek-r1-0528": 254914575,
195
+ "qwen/qwen3-235b-a22b-04-28": 171031344,
196
+ "moonshotai/kimi-k2-0905": 153296218,
197
+ "Others": 413321013
198
+ }
199
+ },
200
+ {
201
+ "x": "2025-10-22 00:00:00",
202
+ "ys": {
203
+ "deepseek/deepseek-chat-v3.1": 1979985533,
204
+ "qwen/qwen3-235b-a22b-07-25": 1333566844,
205
+ "moonshotai/kimi-k2": 429102373,
206
+ "qwen/qwen3-coder-480b-a35b-07-25": 285493494,
207
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 280875736,
208
+ "deepseek/deepseek-chat-v3-0324": 206735731,
209
+ "deepseek/deepseek-r1-0528": 203242212,
210
+ "moonshotai/kimi-k2-0905": 167356012,
211
+ "openai/gpt-oss-120b": 153917850,
212
+ "Others": 412196114
213
+ }
214
+ },
215
+ {
216
+ "x": "2025-10-23 00:00:00",
217
+ "ys": {
218
+ "deepseek/deepseek-chat-v3.1": 1471436825,
219
+ "qwen/qwen3-235b-a22b-07-25": 1260026053,
220
+ "qwen/qwen3-coder-480b-a35b-07-25": 761113142,
221
+ "deepseek/deepseek-chat-v3-0324": 267952844,
222
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 246995584,
223
+ "moonshotai/kimi-k2-0905": 182868203,
224
+ "qwen/qwen3-235b-a22b-04-28": 136056500,
225
+ "moonshotai/kimi-k2": 121627171,
226
+ "meta-llama/llama-3.1-70b-instruct": 115667112,
227
+ "Others": 409250610
228
+ }
229
+ },
230
+ {
231
+ "x": "2025-10-24 00:00:00",
232
+ "ys": {
233
+ "deepseek/deepseek-chat-v3.1": 1558993052,
234
+ "qwen/qwen3-235b-a22b-07-25": 1330730057,
235
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 277463771,
236
+ "openai/gpt-oss-120b": 231792068,
237
+ "deepseek/deepseek-chat-v3-0324": 204975646,
238
+ "meta-llama/llama-3.1-8b-instruct": 203341113,
239
+ "qwen/qwen3-235b-a22b-04-28": 165857054,
240
+ "moonshotai/kimi-k2-0905": 160301289,
241
+ "openai/gpt-oss-20b": 158101380,
242
+ "Others": 598909940
243
+ }
244
+ },
245
+ {
246
+ "x": "2025-10-25 00:00:00",
247
+ "ys": {
248
+ "deepseek/deepseek-chat-v3.1": 1480470999,
249
+ "qwen/qwen3-235b-a22b-07-25": 1443054337,
250
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 217670262,
251
+ "deepseek/deepseek-chat-v3-0324": 183158886,
252
+ "meta-llama/llama-3.1-70b-instruct": 153944215,
253
+ "qwen/qwen3-235b-a22b-04-28": 129129438,
254
+ "moonshotai/kimi-k2-0905": 110422175,
255
+ "moonshotai/kimi-k2": 81862858,
256
+ "deepseek/deepseek-r1-0528": 77779362,
257
+ "Others": 167794337
258
+ }
259
+ },
260
+ {
261
+ "x": "2025-10-26 00:00:00",
262
+ "ys": {
263
+ "deepseek/deepseek-chat-v3.1": 1425726972,
264
+ "qwen/qwen3-235b-a22b-07-25": 1392535228,
265
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 322710401,
266
+ "deepseek/deepseek-chat-v3-0324": 196039276,
267
+ "qwen/qwen3-235b-a22b-04-28": 162981961,
268
+ "moonshotai/kimi-k2": 133992595,
269
+ "meta-llama/llama-3.1-70b-instruct": 121419676,
270
+ "deepseek/deepseek-r1-0528": 94562718,
271
+ "moonshotai/kimi-k2-0905": 85606570,
272
+ "Others": 215919398
273
+ }
274
+ },
275
+ {
276
+ "x": "2025-10-27 00:00:00",
277
+ "ys": {
278
+ "deepseek/deepseek-chat-v3.1": 1611084682,
279
+ "qwen/qwen3-235b-a22b-07-25": 1205035090,
280
+ "meta-llama/llama-3.1-8b-instruct": 487465409,
281
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 412857641,
282
+ "deepseek/deepseek-chat-v3-0324": 249882894,
283
+ "meta-llama/llama-3.1-70b-instruct": 248091143,
284
+ "moonshotai/kimi-k2-0905": 165831538,
285
+ "qwen/qwen3-235b-a22b-04-28": 160364384,
286
+ "deepseek/deepseek-r1-0528": 134340011,
287
+ "Others": 410229458
288
+ }
289
+ },
290
+ {
291
+ "x": "2025-10-28 00:00:00",
292
+ "ys": {
293
+ "deepseek/deepseek-chat-v3.1": 1300897188,
294
+ "qwen/qwen3-235b-a22b-07-25": 1236869453,
295
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 294409831,
296
+ "deepseek/deepseek-chat-v3-0324": 234886988,
297
+ "qwen/qwen3-235b-a22b-04-28": 150599599,
298
+ "deepseek/deepseek-r1-0528": 140753083,
299
+ "meta-llama/llama-3.1-70b-instruct": 129290133,
300
+ "moonshotai/kimi-k2": 111699671,
301
+ "moonshotai/kimi-k2-0905": 95495894,
302
+ "Others": 272929063
303
+ }
304
+ },
305
+ {
306
+ "x": "2025-10-29 00:00:00",
307
+ "ys": {
308
+ "deepseek/deepseek-chat-v3.1": 1170993674,
309
+ "qwen/qwen3-235b-a22b-07-25": 1154063073,
310
+ "qwen/qwen3-coder-480b-a35b-07-25": 553410691,
311
+ "deepseek/deepseek-chat-v3-0324": 522912302,
312
+ "moonshotai/kimi-k2": 415418234,
313
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 356066862,
314
+ "meta-llama/llama-3.1-70b-instruct": 239916441,
315
+ "openai/gpt-oss-120b": 218827565,
316
+ "qwen/qwen3-235b-a22b-04-28": 154421158,
317
+ "Others": 555244850
318
+ }
319
+ },
320
+ {
321
+ "x": "2025-10-30 00:00:00",
322
+ "ys": {
323
+ "deepseek/deepseek-chat-v3.1": 1110064530,
324
+ "qwen/qwen3-235b-a22b-07-25": 992932977,
325
+ "moonshotai/kimi-k2": 487565684,
326
+ "deepseek/deepseek-chat-v3-0324": 436950992,
327
+ "openai/gpt-oss-120b": 319096368,
328
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 318200733,
329
+ "deepseek/deepseek-r1-0528": 225458309,
330
+ "qwen/qwen3-235b-a22b-04-28": 138462024,
331
+ "minimax/minimax-m2": 130400757,
332
+ "Others": 588380362
333
+ }
334
+ },
335
+ {
336
+ "x": "2025-10-31 00:00:00",
337
+ "ys": {
338
+ "deepseek/deepseek-chat-v3.1": 1121165703,
339
+ "openai/gpt-oss-120b": 388614004,
340
+ "minimax/minimax-m2": 334052434,
341
+ "deepseek/deepseek-chat-v3-0324": 325594632,
342
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 257468430,
343
+ "qwen/qwen3-235b-a22b-04-28": 184400777,
344
+ "moonshotai/kimi-k2": 183064260,
345
+ "qwen/qwen3-235b-a22b-07-25": 153769331,
346
+ "z-ai/glm-4.6": 139914866,
347
+ "Others": 746981478
348
+ }
349
+ },
350
+ {
351
+ "x": "2025-11-01 00:00:00",
352
+ "ys": {
353
+ "deepseek/deepseek-chat-v3.1": 1010365133,
354
+ "openai/gpt-oss-120b": 639100195,
355
+ "minimax/minimax-m2": 366361871,
356
+ "deepseek/deepseek-chat-v3-0324": 203538675,
357
+ "qwen/qwen2.5-vl-32b-instruct": 166665490,
358
+ "qwen/qwen3-235b-a22b-04-28": 160163738,
359
+ "qwen/qwen3-235b-a22b-07-25": 155020635,
360
+ "qwen/qwen3-embedding-8b": 124782673,
361
+ "z-ai/glm-4.6": 104577018,
362
+ "Others": 412609218
363
+ }
364
+ },
365
+ {
366
+ "x": "2025-11-02 00:00:00",
367
+ "ys": {
368
+ "deepseek/deepseek-chat-v3.1": 1089526053,
369
+ "openai/gpt-oss-120b": 731189029,
370
+ "minimax/minimax-m2": 270641263,
371
+ "qwen/qwen3-235b-a22b-07-25": 224005899,
372
+ "deepseek/deepseek-chat-v3-0324": 194809674,
373
+ "qwen/qwen3-235b-a22b-04-28": 153630905,
374
+ "qwen/qwen2.5-vl-32b-instruct": 132672143,
375
+ "qwen/qwen3-vl-235b-a22b-instruct": 109515710,
376
+ "z-ai/glm-4.6": 98658112,
377
+ "Others": 392124979
378
+ }
379
+ },
380
+ {
381
+ "x": "2025-11-03 00:00:00",
382
+ "ys": {
383
+ "deepseek/deepseek-chat-v3.1": 1005311912,
384
+ "openai/gpt-oss-120b": 892661003,
385
+ "minimax/minimax-m2": 348146459,
386
+ "qwen/qwen3-coder-480b-a35b-07-25": 193411041,
387
+ "deepseek/deepseek-chat-v3-0324": 141826109,
388
+ "qwen/qwen3-235b-a22b-04-28": 136923466,
389
+ "z-ai/glm-4.6": 135361727,
390
+ "qwen/qwen2.5-vl-32b-instruct": 121826714,
391
+ "qwen/qwen3-vl-235b-a22b-instruct": 115194525,
392
+ "Others": 488392996
393
+ }
394
+ },
395
+ {
396
+ "x": "2025-11-04 00:00:00",
397
+ "ys": {
398
+ "deepseek/deepseek-chat-v3.1": 1194162204,
399
+ "minimax/minimax-m2": 371401374,
400
+ "qwen/qwen3-coder-480b-a35b-07-25": 261385136,
401
+ "qwen/qwen3-8b-04-28": 257247838,
402
+ "deepseek/deepseek-r1-0528": 148781944,
403
+ "qwen/qwen3-vl-235b-a22b-instruct": 143014822,
404
+ "qwen/qwen3-235b-a22b-04-28": 135102102,
405
+ "deepseek/deepseek-chat-v3-0324": 131077850,
406
+ "z-ai/glm-4.6": 127981666,
407
+ "Others": 509682552
408
+ }
409
+ },
410
+ {
411
+ "x": "2025-11-05 00:00:00",
412
+ "ys": {
413
+ "deepseek/deepseek-chat-v3.1": 1143746788,
414
+ "qwen/qwen3-coder-480b-a35b-07-25": 684930624,
415
+ "qwen/qwen3-8b-04-28": 541358538,
416
+ "minimax/minimax-m2": 340867258,
417
+ "openai/gpt-oss-120b": 187870893,
418
+ "qwen/qwen3-235b-a22b-04-28": 166935990,
419
+ "deepseek/deepseek-chat-v3-0324": 142743612,
420
+ "moonshotai/kimi-k2-0905": 140242526,
421
+ "qwen/qwen3-235b-a22b-07-25": 135396709,
422
+ "Others": 553011983
423
+ }
424
+ },
425
+ {
426
+ "x": "2025-11-06 00:00:00",
427
+ "ys": {
428
+ "qwen/qwen3-vl-235b-a22b-instruct": 1768419671,
429
+ "deepseek/deepseek-chat-v3.1": 1175044329,
430
+ "qwen/qwen3-coder-480b-a35b-07-25": 451428410,
431
+ "deepseek/deepseek-chat-v3-0324": 397321965,
432
+ "qwen/qwen3-235b-a22b-04-28": 208508907,
433
+ "moonshotai/kimi-k2-0905": 157234804,
434
+ "z-ai/glm-4.6": 154153613,
435
+ "qwen/qwen2.5-vl-32b-instruct": 152188440,
436
+ "qwen/qwen3-vl-30b-a3b-instruct": 106301247,
437
+ "Others": 457185950
438
+ }
439
+ },
440
+ {
441
+ "x": "2025-11-07 00:00:00",
442
+ "ys": {
443
+ "qwen/qwen3-vl-235b-a22b-instruct": 2353729225,
444
+ "deepseek/deepseek-chat-v3.1": 1020084608,
445
+ "qwen/qwen3-coder-480b-a35b-07-25": 319322819,
446
+ "minimax/minimax-m2": 250658145,
447
+ "qwen/qwen3-235b-a22b-04-28": 205333694,
448
+ "qwen/qwen3-235b-a22b-07-25": 183873115,
449
+ "deepseek/deepseek-chat-v3-0324": 129698607,
450
+ "deepseek/deepseek-r1-0528": 113196236,
451
+ "moonshotai/kimi-k2-0905": 112863231,
452
+ "Others": 326100263
453
+ }
454
+ },
455
+ {
456
+ "x": "2025-11-08 00:00:00",
457
+ "ys": {
458
+ "qwen/qwen3-vl-235b-a22b-instruct": 2232303664,
459
+ "deepseek/deepseek-chat-v3.1": 965471026,
460
+ "qwen/qwen3-235b-a22b-04-28": 211503867,
461
+ "minimax/minimax-m2": 162837193,
462
+ "deepseek/deepseek-chat-v3-0324": 136343422,
463
+ "qwen/qwen3-coder-480b-a35b-07-25": 123533866,
464
+ "deepseek/deepseek-r1-0528": 108984031,
465
+ "qwen/qwen3-vl-30b-a3b-instruct": 100386567,
466
+ "moonshotai/kimi-k2-0905": 88775709,
467
+ "Others": 262120009
468
+ }
469
+ },
470
+ {
471
+ "x": "2025-11-09 00:00:00",
472
+ "ys": {
473
+ "qwen/qwen3-vl-235b-a22b-instruct": 2447445410,
474
+ "deepseek/deepseek-chat-v3.1": 962404067,
475
+ "minimax/minimax-m2": 328896815,
476
+ "deepseek/deepseek-chat-v3-0324": 153055224,
477
+ "qwen/qwen3-235b-a22b-04-28": 125458976,
478
+ "deepseek/deepseek-r1-0528": 97465517,
479
+ "qwen/qwen3-vl-30b-a3b-instruct": 94645192,
480
+ "moonshotai/kimi-k2-0905": 71119911,
481
+ "z-ai/glm-4.6": 56372469,
482
+ "Others": 192130768
483
+ }
484
+ },
485
+ {
486
+ "x": "2025-11-10 00:00:00",
487
+ "ys": {
488
+ "deepseek/deepseek-chat-v3.1": 1255369913,
489
+ "qwen/qwen3-vl-235b-a22b-instruct": 1021570674,
490
+ "minimax/minimax-m2": 837908463,
491
+ "qwen/qwen3-235b-a22b-04-28": 144305872,
492
+ "deepseek/deepseek-chat-v3-0324": 140849678,
493
+ "deepseek/deepseek-r1-0528": 113013710,
494
+ "qwen/qwen3-235b-a22b-07-25": 111605806,
495
+ "z-ai/glm-4.6": 102008475,
496
+ "qwen/qwen3-vl-30b-a3b-instruct": 82143934,
497
+ "Others": 262904206
498
+ }
499
+ },
500
+ {
501
+ "x": "2025-11-11 00:00:00",
502
+ "ys": {
503
+ "deepseek/deepseek-chat-v3.1": 1052938239,
504
+ "qwen/qwen3-vl-235b-a22b-instruct": 827518776,
505
+ "qwen/qwen3-8b-04-28": 255690883,
506
+ "minimax/minimax-m2": 208079715,
507
+ "qwen/qwen3-235b-a22b-07-25": 181715200,
508
+ "deepseek/deepseek-r1-0528": 162470371,
509
+ "deepseek/deepseek-chat-v3-0324": 150968125,
510
+ "qwen/qwen3-235b-a22b-04-28": 142984316,
511
+ "qwen/qwen3-coder-480b-a35b-07-25": 115730870,
512
+ "Others": 358584562
513
+ }
514
+ },
515
+ {
516
+ "x": "2025-11-12 00:00:00",
517
+ "ys": {
518
+ "deepseek/deepseek-chat-v3.1": 1022937732,
519
+ "moonshotai/kimi-k2-thinking-20251106": 567332881,
520
+ "minimax/minimax-m2": 498105822,
521
+ "qwen/qwen3-vl-235b-a22b-instruct": 241834640,
522
+ "qwen/qwen3-235b-a22b-07-25": 221921432,
523
+ "qwen/qwen3-coder-480b-a35b-07-25": 179270420,
524
+ "deepseek/deepseek-r1-0528": 135930802,
525
+ "deepseek/deepseek-chat-v3-0324": 135773035,
526
+ "qwen/qwen3-235b-a22b-04-28": 130721622,
527
+ "Others": 372880620
528
+ }
529
+ },
530
+ {
531
+ "x": "2025-11-13 00:00:00",
532
+ "ys": {
533
+ "deepseek/deepseek-chat-v3.1": 1498810062,
534
+ "minimax/minimax-m2": 554720648,
535
+ "qwen/qwen3-vl-235b-a22b-instruct": 233991329,
536
+ "qwen/qwen3-coder-480b-a35b-07-25": 217398369,
537
+ "moonshotai/kimi-k2-thinking-20251106": 197883488,
538
+ "qwen/qwen3-235b-a22b-07-25": 171745462,
539
+ "qwen/qwen3-235b-a22b-04-28": 154398476,
540
+ "z-ai/glm-4.6": 148077009,
541
+ "deepseek/deepseek-chat-v3-0324": 142056582,
542
+ "Others": 478488247
543
+ }
544
+ },
545
+ {
546
+ "x": "2025-11-14 00:00:00",
547
+ "ys": {
548
+ "deepseek/deepseek-chat-v3.1": 1839999763,
549
+ "minimax/minimax-m2": 481294940,
550
+ "qwen/qwen3-235b-a22b-07-25": 329254005,
551
+ "qwen/qwen3-vl-235b-a22b-instruct": 245951755,
552
+ "moonshotai/kimi-k2-thinking-20251106": 185502660,
553
+ "deepseek/deepseek-r1-0528": 175741883,
554
+ "qwen/qwen3-coder-480b-a35b-07-25": 167118629,
555
+ "qwen/qwen3-8b-04-28": 142440571,
556
+ "z-ai/glm-4.6": 134250257,
557
+ "Others": 605414433
558
+ }
559
+ },
560
+ {
561
+ "x": "2025-11-15 00:00:00",
562
+ "ys": {
563
+ "deepseek/deepseek-chat-v3.1": 1904570784,
564
+ "qwen/qwen3-235b-a22b-07-25": 1146198150,
565
+ "minimax/minimax-m2": 465348898,
566
+ "qwen/qwen3-vl-235b-a22b-instruct": 198488120,
567
+ "deepseek/deepseek-r1-0528": 176358107,
568
+ "moonshotai/kimi-k2-thinking-20251106": 170818694,
569
+ "qwen/qwen3-coder-480b-a35b-07-25": 168876609,
570
+ "qwen/qwen3-235b-a22b-04-28": 163256135,
571
+ "z-ai/glm-4.6": 140967949,
572
+ "Others": 432751859
573
+ }
574
+ },
575
+ {
576
+ "x": "2025-11-16 00:00:00",
577
+ "ys": {
578
+ "deepseek/deepseek-chat-v3.1": 1992775905,
579
+ "qwen/qwen3-235b-a22b-07-25": 1218053224,
580
+ "minimax/minimax-m2": 510492012,
581
+ "qwen/qwen3-vl-235b-a22b-instruct": 377266181,
582
+ "qwen/qwen3-8b-04-28": 317855294,
583
+ "qwen/qwen3-coder-480b-a35b-07-25": 251121778,
584
+ "z-ai/glm-4.6": 213264057,
585
+ "deepseek/deepseek-r1-0528": 195058762,
586
+ "moonshotai/kimi-k2-thinking-20251106": 183772921,
587
+ "Others": 549061274
588
+ }
589
+ },
590
+ {
591
+ "x": "2025-11-17 00:00:00",
592
+ "ys": {
593
+ "deepseek/deepseek-chat-v3.1": 2344515675,
594
+ "qwen/qwen3-235b-a22b-07-25": 607839195,
595
+ "minimax/minimax-m2": 579481577,
596
+ "qwen/qwen3-vl-235b-a22b-instruct": 429909493,
597
+ "deepseek/deepseek-r1-0528": 227720939,
598
+ "qwen/qwen3-coder-480b-a35b-07-25": 189398047,
599
+ "qwen/qwen3-vl-30b-a3b-instruct": 179751518,
600
+ "z-ai/glm-4.6": 169892938,
601
+ "deepseek/deepseek-chat-v3-0324": 169147938,
602
+ "Others": 657853469
603
+ }
604
+ },
605
+ {
606
+ "x": "2025-11-18 00:00:00",
607
+ "ys": {
608
+ "deepseek/deepseek-chat-v3.1": 2240257182,
609
+ "minimax/minimax-m2": 596420356,
610
+ "qwen/qwen3-235b-a22b-07-25": 573358239,
611
+ "deepseek/deepseek-r1-0528": 233068330,
612
+ "qwen/qwen3-coder-480b-a35b-07-25": 223135388,
613
+ "qwen/qwen3-8b-04-28": 174547376,
614
+ "openai/gpt-oss-120b": 168486757,
615
+ "z-ai/glm-4.6": 166143083,
616
+ "deepseek/deepseek-chat-v3-0324": 165205090,
617
+ "Others": 796608170
618
+ }
619
+ },
620
+ {
621
+ "x": "2025-11-19 00:00:00",
622
+ "ys": {
623
+ "deepseek/deepseek-chat-v3.1": 2030602026,
624
+ "qwen/qwen3-coder-480b-a35b-07-25": 1527565102,
625
+ "minimax/minimax-m2": 542496551,
626
+ "qwen/qwen3-vl-235b-a22b-instruct": 273677264,
627
+ "qwen/qwen2.5-vl-32b-instruct": 262193045,
628
+ "deepseek/deepseek-r1-0528": 257904662,
629
+ "moonshotai/kimi-k2-thinking-20251106": 198722523,
630
+ "deepseek/deepseek-chat-v3-0324": 181070263,
631
+ "qwen/qwen3-235b-a22b-07-25": 179676890,
632
+ "Others": 773876235
633
+ }
634
+ },
635
+ {
636
+ "x": "2025-11-20 00:00:00",
637
+ "ys": {
638
+ "deepseek/deepseek-chat-v3.1": 2070560924,
639
+ "minimax/minimax-m2": 459096280,
640
+ "qwen/qwen2.5-vl-32b-instruct": 326406054,
641
+ "qwen/qwen3-coder-480b-a35b-07-25": 300405531,
642
+ "deepseek/deepseek-r1-0528": 229828879,
643
+ "moonshotai/kimi-k2-thinking-20251106": 219628326,
644
+ "qwen/qwen3-235b-a22b-04-28": 186160789,
645
+ "deepseek/deepseek-chat-v3-0324": 175982664,
646
+ "qwen/qwen3-vl-235b-a22b-instruct": 173237342,
647
+ "Others": 713258723
648
+ }
649
+ },
650
+ {
651
+ "x": "2025-11-21 00:00:00",
652
+ "ys": {
653
+ "deepseek/deepseek-chat-v3.1": 3215174018,
654
+ "minimax/minimax-m2": 422654760,
655
+ "qwen/qwen3-235b-a22b-04-28": 218478180,
656
+ "moonshotai/kimi-k2-thinking-20251106": 211341166,
657
+ "qwen/qwen3-vl-235b-a22b-instruct": 195539510,
658
+ "deepseek/deepseek-chat-v3-0324": 187491870,
659
+ "deepseek/deepseek-r1-0528": 183080295,
660
+ "qwen/qwen3-coder-480b-a35b-07-25": 181072749,
661
+ "qwen/qwen2.5-vl-32b-instruct": 176660556,
662
+ "Others": 661020165
663
+ }
664
+ },
665
+ {
666
+ "x": "2025-11-22 00:00:00",
667
+ "ys": {
668
+ "deepseek/deepseek-chat-v3.1": 2672412255,
669
+ "qwen/qwen3-coder-480b-a35b-07-25": 643558885,
670
+ "minimax/minimax-m2": 320451278,
671
+ "deepseek/deepseek-r1-0528": 199936469,
672
+ "deepseek/deepseek-chat-v3-0324": 184945390,
673
+ "qwen/qwen3-235b-a22b-04-28": 178308816,
674
+ "qwen/qwen3-vl-235b-a22b-instruct": 144999925,
675
+ "moonshotai/kimi-k2-thinking-20251106": 137682680,
676
+ "z-ai/glm-4.6": 123581632,
677
+ "Others": 426079234
678
+ }
679
+ },
680
+ {
681
+ "x": "2025-11-23 00:00:00",
682
+ "ys": {
683
+ "deepseek/deepseek-chat-v3.1": 3019037291,
684
+ "qwen/qwen3-coder-480b-a35b-07-25": 687068065,
685
+ "minimax/minimax-m2": 303918037,
686
+ "z-ai/glm-4.6": 288400272,
687
+ "deepseek/deepseek-r1-0528": 199434186,
688
+ "qwen/qwen3-235b-a22b-04-28": 195672213,
689
+ "deepseek/deepseek-chat-v3-0324": 191064640,
690
+ "moonshotai/kimi-k2-thinking-20251106": 149949653,
691
+ "qwen/qwen3-vl-30b-a3b-instruct": 137229100,
692
+ "Others": 536154715
693
+ }
694
+ },
695
+ {
696
+ "x": "2025-11-24 00:00:00",
697
+ "ys": {
698
+ "deepseek/deepseek-chat-v3.1": 3364703744,
699
+ "qwen/qwen3-coder-480b-a35b-07-25": 468596640,
700
+ "minimax/minimax-m2": 464325266,
701
+ "qwen/qwen3-vl-30b-a3b-instruct": 231395086,
702
+ "qwen/qwen3-vl-235b-a22b-instruct": 228028702,
703
+ "qwen/qwen3-235b-a22b-04-28": 216540863,
704
+ "deepseek/deepseek-r1-0528": 202205096,
705
+ "deepseek/deepseek-chat-v3-0324": 196491367,
706
+ "z-ai/glm-4.6": 185162730,
707
+ "Others": 640633833
708
+ }
709
+ },
710
+ {
711
+ "x": "2025-11-25 00:00:00",
712
+ "ys": {
713
+ "deepseek/deepseek-chat-v3.1": 2950958556,
714
+ "minimax/minimax-m2": 416230334,
715
+ "qwen/qwen3-coder-480b-a35b-07-25": 344594801,
716
+ "deepseek/deepseek-chat-v3-0324": 227728838,
717
+ "deepseek/deepseek-r1-0528": 205850663,
718
+ "z-ai/glm-4.6": 190788278,
719
+ "qwen/qwen2.5-vl-32b-instruct": 173497225,
720
+ "qwen/qwen3-235b-a22b-04-28": 163500467,
721
+ "qwen/qwen3-vl-235b-a22b-instruct": 162907087,
722
+ "Others": 584740822
723
+ }
724
+ },
725
+ {
726
+ "x": "2025-11-26 00:00:00",
727
+ "ys": {
728
+ "deepseek/deepseek-chat-v3.1": 1613071614,
729
+ "openai/gpt-oss-120b": 637294684,
730
+ "moonshotai/kimi-k2-thinking-20251106": 517838186,
731
+ "qwen/qwen3-coder-480b-a35b-07-25": 365544965,
732
+ "deepseek/deepseek-chat-v3-0324": 222450048,
733
+ "deepseek/deepseek-r1-0528": 189992834,
734
+ "qwen/qwen3-235b-a22b-04-28": 165512086,
735
+ "z-ai/glm-4.6": 161056023,
736
+ "qwen/qwen2.5-vl-32b-instruct": 99181809,
737
+ "Others": 481908144
738
+ }
739
+ },
740
+ {
741
+ "x": "2025-11-27 00:00:00",
742
+ "ys": {
743
+ "deepseek/deepseek-chat-v3.1": 1481172154,
744
+ "openai/gpt-oss-120b": 911833145,
745
+ "qwen/qwen3-coder-480b-a35b-07-25": 435429232,
746
+ "deepseek/deepseek-chat-v3-0324": 259261187,
747
+ "z-ai/glm-4.6": 195402834,
748
+ "qwen/qwen3-235b-a22b-07-25": 181475032,
749
+ "deepseek/deepseek-r1-0528": 176257199,
750
+ "qwen/qwen3-vl-235b-a22b-instruct": 147299367,
751
+ "qwen/qwen3-235b-a22b-04-28": 130779492,
752
+ "Others": 730907293
753
+ }
754
+ },
755
+ {
756
+ "x": "2025-11-28 00:00:00",
757
+ "ys": {
758
+ "deepseek/deepseek-chat-v3.1": 1071256674,
759
+ "qwen/qwen3-235b-a22b-07-25": 256423898,
760
+ "openai/gpt-oss-120b": 246668819,
761
+ "deepseek/deepseek-chat-v3-0324": 230923963,
762
+ "qwen/qwen3-vl-30b-a3b-instruct": 220593514,
763
+ "qwen/qwen3-235b-a22b-04-28": 188474413,
764
+ "deepseek/deepseek-r1-0528": 181098742,
765
+ "z-ai/glm-4.6": 169744022,
766
+ "moonshotai/kimi-k2-thinking-20251106": 168634507,
767
+ "Others": 697674645
768
+ }
769
+ },
770
+ {
771
+ "x": "2025-11-29 00:00:00",
772
+ "ys": {
773
+ "deepseek/deepseek-chat-v3.1": 1103816458,
774
+ "qwen/qwen3-235b-a22b-04-28": 233659564,
775
+ "minimax/minimax-m2": 226355156,
776
+ "deepseek/deepseek-chat-v3-0324": 210583443,
777
+ "moonshotai/kimi-k2-thinking-20251106": 149743405,
778
+ "deepseek/deepseek-r1-0528": 144809338,
779
+ "z-ai/glm-4.6": 138861029,
780
+ "qwen/qwen3-coder-480b-a35b-07-25": 88108586,
781
+ "qwen/qwen2.5-vl-32b-instruct": 71150844,
782
+ "Others": 346509825
783
+ }
784
+ },
785
+ {
786
+ "x": "2025-11-30 00:00:00",
787
+ "ys": {
788
+ "deepseek/deepseek-chat-v3.1": 1154308209,
789
+ "moonshotai/kimi-k2-thinking-20251106": 255176174,
790
+ "deepseek/deepseek-chat-v3-0324": 249478583,
791
+ "qwen/qwen3-235b-a22b-07-25": 169885136,
792
+ "qwen/qwen3-235b-a22b-04-28": 154452840,
793
+ "minimax/minimax-m2": 154422644,
794
+ "z-ai/glm-4.6": 154263073,
795
+ "deepseek/deepseek-r1-0528": 137007982,
796
+ "qwen/qwen3-coder-480b-a35b-07-25": 123296692,
797
+ "Others": 389125867
798
+ }
799
+ },
800
+ {
801
+ "x": "2025-12-01 00:00:00",
802
+ "ys": {
803
+ "deepseek/deepseek-chat-v3.1": 1487253952,
804
+ "openai/gpt-oss-120b": 663165581,
805
+ "minimax/minimax-m2": 414560136,
806
+ "deepseek/deepseek-chat-v3-0324": 267398265,
807
+ "z-ai/glm-4.6": 185418190,
808
+ "qwen/qwen3-235b-a22b-04-28": 184730808,
809
+ "moonshotai/kimi-k2-0905": 176024564,
810
+ "deepseek/deepseek-r1-0528": 150242666,
811
+ "qwen/qwen3-coder-480b-a35b-07-25": 140217618,
812
+ "Others": 526387887
813
+ }
814
+ },
815
+ {
816
+ "x": "2025-12-02 00:00:00",
817
+ "ys": {
818
+ "deepseek/deepseek-chat-v3.1": 1135345006,
819
+ "deepseek/deepseek-chat-v3-0324": 288217332,
820
+ "moonshotai/kimi-k2-thinking-20251106": 220943830,
821
+ "minimax/minimax-m2": 201308322,
822
+ "z-ai/glm-4.6": 179516355,
823
+ "qwen/qwen3-235b-a22b-04-28": 155832353,
824
+ "qwen/qwen3-coder-480b-a35b-07-25": 155101638,
825
+ "deepseek/deepseek-r1-0528": 144456132,
826
+ "qwen/qwen3-235b-a22b-07-25": 125388173,
827
+ "Others": 494588265
828
+ }
829
+ },
830
+ {
831
+ "x": "2025-12-03 00:00:00",
832
+ "ys": {
833
+ "deepseek/deepseek-chat-v3.1": 866996567,
834
+ "deepseek/deepseek-chat-v3-0324": 266691210,
835
+ "qwen/qwen3-vl-235b-a22b-instruct": 239877945,
836
+ "minimax/minimax-m2": 211597697,
837
+ "qwen/qwen3-coder-480b-a35b-07-25": 196638724,
838
+ "qwen/qwen3-235b-a22b-04-28": 194301886,
839
+ "moonshotai/kimi-k2-thinking-20251106": 187081105,
840
+ "z-ai/glm-4.6": 182471984,
841
+ "qwen/qwen2.5-vl-32b-instruct": 173022837,
842
+ "Others": 657118021
843
+ }
844
+ },
845
+ {
846
+ "x": "2025-12-04 00:00:00",
847
+ "ys": {
848
+ "deepseek/deepseek-chat-v3.1": 664900683,
849
+ "minimax/minimax-m2": 431242452,
850
+ "qwen/qwen3-vl-235b-a22b-instruct": 362775485,
851
+ "deepseek/deepseek-chat-v3-0324": 195916190,
852
+ "z-ai/glm-4.6": 178847293,
853
+ "qwen/qwen2.5-vl-32b-instruct": 142499699,
854
+ "qwen/qwen3-235b-a22b-04-28": 142187679,
855
+ "moonshotai/kimi-k2-thinking-20251106": 130580099,
856
+ "qwen/qwen3-8b-04-28": 105467506,
857
+ "Others": 518468177
858
+ }
859
+ },
860
+ {
861
+ "x": "2025-12-05 00:00:00",
862
+ "ys": {
863
+ "deepseek/deepseek-chat-v3.1": 653190027,
864
+ "minimax/minimax-m2": 327068756,
865
+ "qwen/qwen3-vl-235b-a22b-instruct": 223195753,
866
+ "qwen/qwen3-coder-480b-a35b-07-25": 202340239,
867
+ "openai/gpt-oss-120b": 192672281,
868
+ "deepseek/deepseek-chat-v3-0324": 187819002,
869
+ "qwen/qwen3-235b-a22b-04-28": 140440686,
870
+ "z-ai/glm-4.6": 128429070,
871
+ "moonshotai/kimi-k2-thinking-20251106": 123486804,
872
+ "Others": 470205268
873
+ }
874
+ },
875
+ {
876
+ "x": "2025-12-06 00:00:00",
877
+ "ys": {
878
+ "openai/gpt-oss-20b": 689383292,
879
+ "deepseek/deepseek-chat-v3.1": 520564866,
880
+ "qwen/qwen3-8b-04-28": 383035140,
881
+ "qwen/qwen3-coder-480b-a35b-07-25": 261666785,
882
+ "openai/gpt-oss-120b": 216393012,
883
+ "deepseek/deepseek-chat-v3-0324": 171928343,
884
+ "minimax/minimax-m2": 168230673,
885
+ "z-ai/glm-4.6": 141253311,
886
+ "moonshotai/kimi-k2-thinking-20251106": 125389162,
887
+ "Others": 330204506
888
+ }
889
+ },
890
+ {
891
+ "x": "2025-12-07 00:00:00",
892
+ "ys": {
893
+ "openai/gpt-oss-20b": 812440269,
894
+ "deepseek/deepseek-chat-v3.1": 601461779,
895
+ "deepseek/deepseek-chat-v3-0324": 330149713,
896
+ "qwen/qwen3-coder-480b-a35b-07-25": 258006450,
897
+ "openai/gpt-oss-120b": 206922833,
898
+ "z-ai/glm-4.6": 128219471,
899
+ "qwen/qwen3-235b-a22b-04-28": 118620916,
900
+ "minimax/minimax-m2": 118433336,
901
+ "qwen/qwen3-vl-30b-a3b-instruct": 94566994,
902
+ "Others": 261039407
903
+ }
904
+ },
905
+ {
906
+ "x": "2025-12-08 00:00:00",
907
+ "ys": {
908
+ "deepseek/deepseek-chat-v3.1": 897889599,
909
+ "qwen/qwen3-coder-480b-a35b-07-25": 559488090,
910
+ "deepseek/deepseek-chat-v3-0324": 355731119,
911
+ "openai/gpt-oss-120b": 225505465,
912
+ "z-ai/glm-4.6": 153061590,
913
+ "moonshotai/kimi-k2-thinking-20251106": 136842212,
914
+ "qwen/qwen3-235b-a22b-04-28": 124959250,
915
+ "minimax/minimax-m2": 115484911,
916
+ "qwen/qwen3-8b-04-28": 102120531,
917
+ "Others": 370130573
918
+ }
919
+ },
920
+ {
921
+ "x": "2025-12-09 00:00:00",
922
+ "ys": {
923
+ "openai/gpt-oss-20b": 1752800775,
924
+ "deepseek/deepseek-chat-v3.1": 941186214,
925
+ "qwen/qwen3-coder-480b-a35b-07-25": 537467659,
926
+ "deepseek/deepseek-chat-v3-0324": 296194277,
927
+ "openai/gpt-oss-120b": 252715172,
928
+ "moonshotai/kimi-k2-thinking-20251106": 192149405,
929
+ "z-ai/glm-4.6": 148760936,
930
+ "minimax/minimax-m2": 117242324,
931
+ "qwen/qwen3-235b-a22b-04-28": 109256005,
932
+ "Others": 318970337
933
+ }
934
+ },
935
+ {
936
+ "x": "2025-12-10 00:00:00",
937
+ "ys": {
938
+ "openai/gpt-oss-20b": 979413423,
939
+ "deepseek/deepseek-chat-v3.1": 762554220,
940
+ "openai/gpt-oss-120b": 324186200,
941
+ "moonshotai/kimi-k2-thinking-20251106": 312679026,
942
+ "deepseek/deepseek-chat-v3-0324": 308150918,
943
+ "qwen/qwen3-coder-480b-a35b-07-25": 199934041,
944
+ "z-ai/glm-4.6": 157315560,
945
+ "minimax/minimax-m2": 135884075,
946
+ "qwen/qwen3-235b-a22b-04-28": 129027654,
947
+ "Others": 389424457
948
+ }
949
+ },
950
+ {
951
+ "x": "2025-12-11 00:00:00",
952
+ "ys": {
953
+ "deepseek/deepseek-chat-v3.1": 651962774,
954
+ "deepseek/deepseek-chat-v3-0324": 283874519,
955
+ "openai/gpt-oss-120b": 272213589,
956
+ "qwen/qwen3-coder-480b-a35b-07-25": 222456861,
957
+ "minimax/minimax-m2": 157469553,
958
+ "z-ai/glm-4.6": 143986420,
959
+ "qwen/qwen3-235b-a22b-04-28": 127747780,
960
+ "qwen/qwen3-235b-a22b-07-25": 127286350,
961
+ "moonshotai/kimi-k2-thinking-20251106": 118532673,
962
+ "Others": 346960013
963
+ }
964
+ },
965
+ {
966
+ "x": "2025-12-12 00:00:00",
967
+ "ys": {
968
+ "deepseek/deepseek-chat-v3.1": 474170220,
969
+ "moonshotai/kimi-k2-thinking-20251106": 434205153,
970
+ "minimax/minimax-m2": 314805810,
971
+ "moonshotai/kimi-k2-0905": 292534769,
972
+ "openai/gpt-oss-120b": 283059128,
973
+ "qwen/qwen3-vl-30b-a3b-instruct": 174230890,
974
+ "deepseek/deepseek-chat-v3-0324": 161713130,
975
+ "qwen/qwen3-vl-235b-a22b-instruct": 156625113,
976
+ "z-ai/glm-4.6": 155973154,
977
+ "Others": 556339240
978
+ }
979
+ },
980
+ {
981
+ "x": "2025-12-13 00:00:00",
982
+ "ys": {
983
+ "openai/gpt-oss-120b": 514425828,
984
+ "deepseek/deepseek-chat-v3.1": 397822609,
985
+ "minimax/minimax-m2": 234998347,
986
+ "deepseek/deepseek-chat-v3-0324": 205135598,
987
+ "z-ai/glm-4.6": 176516609,
988
+ "moonshotai/kimi-k2-thinking-20251106": 171396961,
989
+ "qwen/qwen3-vl-30b-a3b-instruct": 95919778,
990
+ "qwen/qwen3-235b-a22b-04-28": 95332221,
991
+ "moonshotai/kimi-k2-0905": 87317428,
992
+ "Others": 234570654
993
+ }
994
+ },
995
+ {
996
+ "x": "2025-12-14 00:00:00",
997
+ "ys": {
998
+ "openai/gpt-oss-120b": 787111626,
999
+ "deepseek/deepseek-chat-v3.1": 433056597,
1000
+ "minimax/minimax-m2": 223280384,
1001
+ "deepseek/deepseek-chat-v3-0324": 189807413,
1002
+ "moonshotai/kimi-k2-thinking-20251106": 177792685,
1003
+ "z-ai/glm-4.6": 168189682,
1004
+ "qwen/qwen3-vl-30b-a3b-instruct": 81673392,
1005
+ "qwen/qwen3-235b-a22b-04-28": 80687445,
1006
+ "moonshotai/kimi-k2-0905": 40076918,
1007
+ "Others": 186693832
1008
+ }
1009
+ },
1010
+ {
1011
+ "x": "2025-12-15 00:00:00",
1012
+ "ys": {
1013
+ "openai/gpt-oss-120b": 1586692201,
1014
+ "deepseek/deepseek-chat-v3.1": 552193931,
1015
+ "minimax/minimax-m2": 264866219,
1016
+ "deepseek/deepseek-chat-v3-0324": 186571024,
1017
+ "z-ai/glm-4.6": 157718221,
1018
+ "moonshotai/kimi-k2-thinking-20251106": 146794063,
1019
+ "qwen/qwen3-vl-30b-a3b-instruct": 122707516,
1020
+ "qwen/qwen3-235b-a22b-04-28": 92560131,
1021
+ "moonshotai/kimi-k2-0905": 86022213,
1022
+ "Others": 300063266
1023
+ }
1024
+ },
1025
+ {
1026
+ "x": "2025-12-16 00:00:00",
1027
+ "ys": {
1028
+ "deepseek/deepseek-chat-v3.1": 543709529,
1029
+ "openai/gpt-oss-120b": 533235392,
1030
+ "minimax/minimax-m2": 311745114,
1031
+ "qwen/qwen3-vl-235b-a22b-instruct": 275388761,
1032
+ "moonshotai/kimi-k2-thinking-20251106": 222762222,
1033
+ "z-ai/glm-4.6": 170869721,
1034
+ "deepseek/deepseek-chat-v3-0324": 169279121,
1035
+ "qwen/qwen3-235b-a22b-04-28": 109948684,
1036
+ "meta-llama/llama-3.3-70b-instruct": 108288479,
1037
+ "Others": 414809435
1038
+ }
1039
+ },
1040
+ {
1041
+ "x": "2025-12-17 00:00:00",
1042
+ "ys": {
1043
+ "qwen/qwen3-vl-235b-a22b-instruct": 1153137748,
1044
+ "openai/gpt-oss-120b": 856304366,
1045
+ "deepseek/deepseek-chat-v3.1": 495522729,
1046
+ "qwen/qwen3-8b-04-28": 367211440,
1047
+ "moonshotai/kimi-k2-thinking-20251106": 302350198,
1048
+ "minimax/minimax-m2": 273547663,
1049
+ "meta-llama/llama-3.3-70b-instruct": 220781983,
1050
+ "deepseek/deepseek-chat-v3-0324": 172753854,
1051
+ "z-ai/glm-4.6": 152981276,
1052
+ "Others": 481127243
1053
+ }
1054
+ },
1055
+ {
1056
+ "x": "2025-12-18 00:00:00",
1057
+ "ys": {
1058
+ "qwen/qwen3-vl-235b-a22b-instruct": 596124837,
1059
+ "openai/gpt-oss-120b": 402154307,
1060
+ "deepseek/deepseek-chat-v3.1": 377390755,
1061
+ "minimax/minimax-m2": 253723635,
1062
+ "deepseek/deepseek-chat-v3-0324": 191875117,
1063
+ "moonshotai/kimi-k2-thinking-20251106": 151570257,
1064
+ "qwen/qwen3-8b-04-28": 145629107,
1065
+ "moonshotai/kimi-k2-0905": 134742994,
1066
+ "z-ai/glm-4.6": 132527973,
1067
+ "Others": 490809331
1068
+ }
1069
+ },
1070
+ {
1071
+ "x": "2025-12-19 00:00:00",
1072
+ "ys": {
1073
+ "qwen/qwen3-vl-235b-a22b-instruct": 654273935,
1074
+ "openai/gpt-oss-120b": 626810947,
1075
+ "deepseek/deepseek-chat-v3.1": 523978075,
1076
+ "deepseek/deepseek-chat-v3-0324": 216313771,
1077
+ "minimax/minimax-m2": 177503138,
1078
+ "qwen/qwen3-vl-30b-a3b-instruct": 143919299,
1079
+ "z-ai/glm-4.6": 126945597,
1080
+ "qwen/qwen3-235b-a22b-04-28": 113147754,
1081
+ "moonshotai/kimi-k2-0905": 98117338,
1082
+ "Others": 399200808
1083
+ }
1084
+ },
1085
+ {
1086
+ "x": "2025-12-20 00:00:00",
1087
+ "ys": {
1088
+ "qwen/qwen3-vl-235b-a22b-instruct": 437123891,
1089
+ "deepseek/deepseek-chat-v3.1": 376693913,
1090
+ "qwen/qwen3-8b-04-28": 240160907,
1091
+ "deepseek/deepseek-chat-v3-0324": 200144247,
1092
+ "qwen/qwen3-235b-a22b-04-28": 136098927,
1093
+ "qwen/qwen3-vl-30b-a3b-instruct": 134073000,
1094
+ "qwen/qwen3-coder-480b-a35b-07-25": 75823824,
1095
+ "qwen/qwen3-235b-a22b-07-25": 61046819,
1096
+ "moonshotai/kimi-k2-0905": 51606748,
1097
+ "Others": 120528505
1098
+ }
1099
+ },
1100
+ {
1101
+ "x": "2025-12-21 00:00:00",
1102
+ "ys": {
1103
+ "deepseek/deepseek-chat-v3.1": 380512590,
1104
+ "qwen/qwen3-vl-235b-a22b-instruct": 328131489,
1105
+ "qwen/qwen3-8b-04-28": 261797586,
1106
+ "deepseek/deepseek-chat-v3-0324": 201771677,
1107
+ "openai/gpt-oss-120b": 145375465,
1108
+ "moonshotai/kimi-k2-0905": 120153090,
1109
+ "qwen/qwen3-235b-a22b-04-28": 111602415,
1110
+ "z-ai/glm-4.6": 67258439,
1111
+ "qwen/qwen3-235b-a22b-07-25": 62489195,
1112
+ "Others": 152965164
1113
+ }
1114
+ },
1115
+ {
1116
+ "x": "2025-12-22 00:00:00",
1117
+ "ys": {
1118
+ "deepseek/deepseek-chat-v3.1": 501304202,
1119
+ "qwen/qwen3-vl-235b-a22b-instruct": 310778156,
1120
+ "openai/gpt-oss-120b": 248702290,
1121
+ "deepseek/deepseek-chat-v3-0324": 239434922,
1122
+ "z-ai/glm-4.6": 146556581,
1123
+ "qwen/qwen3-235b-a22b-07-25": 139445505,
1124
+ "qwen/qwen3-8b-04-28": 123699471,
1125
+ "qwen/qwen3-235b-a22b-04-28": 118025745,
1126
+ "moonshotai/kimi-k2-0905": 116030673,
1127
+ "Others": 304264391
1128
+ }
1129
+ },
1130
+ {
1131
+ "x": "2025-12-23 00:00:00",
1132
+ "ys": {
1133
+ "openai/gpt-oss-120b": 562371956,
1134
+ "deepseek/deepseek-chat-v3.1": 554083897,
1135
+ "qwen/qwen3-vl-235b-a22b-instruct": 405143147,
1136
+ "deepseek/deepseek-chat-v3-0324": 230915373,
1137
+ "qwen/qwen3-8b-04-28": 179188980,
1138
+ "z-ai/glm-4.6": 150181584,
1139
+ "qwen/qwen3-vl-30b-a3b-instruct": 118823785,
1140
+ "qwen/qwen3-235b-a22b-04-28": 93392860,
1141
+ "moonshotai/kimi-k2-0905": 91934293,
1142
+ "Others": 258931422
1143
+ }
1144
+ },
1145
+ {
1146
+ "x": "2025-12-24 00:00:00",
1147
+ "ys": {
1148
+ "deepseek/deepseek-chat-v3.1": 454645310,
1149
+ "qwen/qwen3-8b-04-28": 240398898,
1150
+ "deepseek/deepseek-chat-v3-0324": 229377139,
1151
+ "openai/gpt-oss-120b": 202397428,
1152
+ "qwen/qwen3-vl-235b-a22b-instruct": 194864640,
1153
+ "qwen/qwen3-vl-30b-a3b-instruct": 136006692,
1154
+ "z-ai/glm-4.6": 129888107,
1155
+ "qwen/qwen2.5-vl-32b-instruct": 122751976,
1156
+ "qwen/qwen3-235b-a22b-04-28": 88207995,
1157
+ "Others": 261058088
1158
+ }
1159
+ },
1160
+ {
1161
+ "x": "2025-12-25 00:00:00",
1162
+ "ys": {
1163
+ "deepseek/deepseek-chat-v3.1": 324480596,
1164
+ "deepseek/deepseek-chat-v3-0324": 188277591,
1165
+ "z-ai/glm-4.6": 125178862,
1166
+ "qwen/qwen3-235b-a22b-04-28": 122371675,
1167
+ "qwen/qwen3-vl-30b-a3b-instruct": 95453389,
1168
+ "qwen/qwen3-8b-04-28": 87494920,
1169
+ "openai/gpt-oss-120b": 84143629,
1170
+ "qwen/qwen3-235b-a22b-07-25": 58222764,
1171
+ "qwen/qwen3-vl-235b-a22b-instruct": 54881798,
1172
+ "Others": 168987243
1173
+ }
1174
+ },
1175
+ {
1176
+ "x": "2025-12-26 00:00:00",
1177
+ "ys": {
1178
+ "deepseek/deepseek-chat-v3.1": 446147351,
1179
+ "qwen/qwen3-8b-04-28": 209832898,
1180
+ "deepseek/deepseek-chat-v3-0324": 205755372,
1181
+ "openai/gpt-oss-120b": 189765836,
1182
+ "qwen/qwen3-vl-30b-a3b-instruct": 183682549,
1183
+ "qwen/qwen3-235b-a22b-07-25": 164646960,
1184
+ "z-ai/glm-4.6": 156587462,
1185
+ "qwen/qwen3-235b-a22b-04-28": 135277499,
1186
+ "qwen/qwen3-vl-235b-a22b-instruct": 89152341,
1187
+ "Others": 243063163
1188
+ }
1189
+ },
1190
+ {
1191
+ "x": "2025-12-27 00:00:00",
1192
+ "ys": {
1193
+ "qwen/qwen3-235b-a22b-07-25": 533084332,
1194
+ "deepseek/deepseek-chat-v3.1": 430831972,
1195
+ "qwen/qwen3-vl-30b-a3b-instruct": 316380318,
1196
+ "qwen/qwen3-vl-235b-a22b-instruct": 264201552,
1197
+ "deepseek/deepseek-chat-v3-0324": 190983278,
1198
+ "z-ai/glm-4.6": 186953995,
1199
+ "qwen/qwen3-235b-a22b-04-28": 119466086,
1200
+ "openai/gpt-oss-120b": 89724383,
1201
+ "moonshotai/kimi-k2-0905": 54767181,
1202
+ "Others": 184818216
1203
+ }
1204
+ },
1205
+ {
1206
+ "x": "2025-12-28 00:00:00",
1207
+ "ys": {
1208
+ "deepseek/deepseek-chat-v3.1": 868845381,
1209
+ "qwen/qwen3-235b-a22b-07-25": 483684456,
1210
+ "qwen/qwen3-vl-235b-a22b-instruct": 268511120,
1211
+ "qwen/qwen3-vl-30b-a3b-instruct": 268291787,
1212
+ "deepseek/deepseek-chat-v3-0324": 212790772,
1213
+ "z-ai/glm-4.6": 180872830,
1214
+ "qwen/qwen3-235b-a22b-04-28": 115616655,
1215
+ "openai/gpt-oss-120b": 106298527,
1216
+ "qwen/qwen3-8b-04-28": 61358603,
1217
+ "Others": 144207055
1218
+ }
1219
+ },
1220
+ {
1221
+ "x": "2025-12-29 00:00:00",
1222
+ "ys": {
1223
+ "deepseek/deepseek-chat-v3.1": 754186371,
1224
+ "qwen/qwen3-vl-235b-a22b-instruct": 394860109,
1225
+ "qwen/qwen3-235b-a22b-07-25": 369443769,
1226
+ "openai/gpt-oss-120b": 301351863,
1227
+ "qwen/qwen3-vl-30b-a3b-instruct": 254606568,
1228
+ "deepseek/deepseek-chat-v3-0324": 226946834,
1229
+ "z-ai/glm-4.6": 199781590,
1230
+ "moonshotai/kimi-k2-0905": 129546482,
1231
+ "qwen/qwen3-235b-a22b-04-28": 105668998,
1232
+ "Others": 241397982
1233
+ }
1234
+ },
1235
+ {
1236
+ "x": "2025-12-30 00:00:00",
1237
+ "ys": {
1238
+ "openai/gpt-oss-120b": 740142244,
1239
+ "qwen/qwen3-vl-235b-a22b-instruct": 596868327,
1240
+ "deepseek/deepseek-chat-v3.1": 487702153,
1241
+ "qwen/qwen3-vl-30b-a3b-instruct": 282639757,
1242
+ "deepseek/deepseek-chat-v3-0324": 239139222,
1243
+ "qwen/qwen3-235b-a22b-07-25": 235637930,
1244
+ "qwen/qwen3-8b-04-28": 220874572,
1245
+ "z-ai/glm-4.6": 186456670,
1246
+ "qwen/qwen2.5-vl-32b-instruct": 160840472,
1247
+ "Others": 505800249
1248
+ }
1249
+ },
1250
+ {
1251
+ "x": "2025-12-31 00:00:00",
1252
+ "ys": {
1253
+ "qwen/qwen3-vl-235b-a22b-instruct": 491736128,
1254
+ "deepseek/deepseek-chat-v3.1": 480557785,
1255
+ "qwen/qwen3-vl-30b-a3b-instruct": 396577256,
1256
+ "qwen/qwen3-8b-04-28": 257428611,
1257
+ "z-ai/glm-4.6": 195679866,
1258
+ "deepseek/deepseek-chat-v3-0324": 188567882,
1259
+ "qwen/qwen2.5-vl-32b-instruct": 158041662,
1260
+ "openai/gpt-oss-120b": 151493169,
1261
+ "minimax/minimax-m2.1": 128906449,
1262
+ "Others": 438348430
1263
+ }
1264
+ },
1265
+ {
1266
+ "x": "2026-01-01 00:00:00",
1267
+ "ys": {
1268
+ "deepseek/deepseek-chat-v3.1": 460961333,
1269
+ "qwen/qwen3-vl-235b-a22b-instruct": 419718302,
1270
+ "qwen/qwen3-8b-04-28": 357694986,
1271
+ "qwen/qwen3-vl-30b-a3b-instruct": 255158219,
1272
+ "z-ai/glm-4.6": 200622092,
1273
+ "deepseek/deepseek-chat-v3-0324": 187860374,
1274
+ "qwen/qwen2.5-vl-32b-instruct": 137497832,
1275
+ "qwen/qwen3-235b-a22b-04-28": 118292918,
1276
+ "openai/gpt-oss-120b": 116930282,
1277
+ "Others": 323494533
1278
+ }
1279
+ },
1280
+ {
1281
+ "x": "2026-01-02 00:00:00",
1282
+ "ys": {
1283
+ "deepseek/deepseek-chat-v3.1": 1204830780,
1284
+ "qwen/qwen3-vl-235b-a22b-instruct": 428304796,
1285
+ "openai/gpt-oss-120b": 335071030,
1286
+ "qwen/qwen3-vl-30b-a3b-instruct": 318095197,
1287
+ "deepseek/deepseek-chat-v3-0324": 224204228,
1288
+ "z-ai/glm-4.6": 188201065,
1289
+ "qwen/qwen3-235b-a22b-04-28": 166443413,
1290
+ "qwen/qwen2.5-vl-32b-instruct": 156527403,
1291
+ "qwen/qwen3-8b-04-28": 152188512,
1292
+ "Others": 446394096
1293
+ }
1294
+ },
1295
+ {
1296
+ "x": "2026-01-03 00:00:00",
1297
+ "ys": {
1298
+ "deepseek/deepseek-chat-v3.1": 727374692,
1299
+ "qwen/qwen3-vl-235b-a22b-instruct": 461597956,
1300
+ "qwen/qwen3-vl-30b-a3b-instruct": 307948400,
1301
+ "deepseek/deepseek-chat-v3-0324": 249471319,
1302
+ "openai/gpt-oss-120b": 222062211,
1303
+ "z-ai/glm-4.6": 183496679,
1304
+ "qwen/qwen3-8b-04-28": 179990962,
1305
+ "qwen/qwen2.5-vl-32b-instruct": 168493758,
1306
+ "moonshotai/kimi-k2-0905": 159065221,
1307
+ "Others": 424151969
1308
+ }
1309
+ },
1310
+ {
1311
+ "x": "2026-01-04 00:00:00",
1312
+ "ys": {
1313
+ "deepseek/deepseek-chat-v3.1": 868792663,
1314
+ "moonshotai/kimi-k2-0905": 697047288,
1315
+ "qwen/qwen3-vl-30b-a3b-instruct": 392545264,
1316
+ "openai/gpt-oss-120b": 332436814,
1317
+ "qwen/qwen3-vl-235b-a22b-instruct": 292944051,
1318
+ "qwen/qwen3-8b-04-28": 240431947,
1319
+ "deepseek/deepseek-chat-v3-0324": 221866431,
1320
+ "z-ai/glm-4.6": 180675489,
1321
+ "minimax/minimax-m2.1": 160021303,
1322
+ "Others": 340779384
1323
+ }
1324
+ },
1325
+ {
1326
+ "x": "2026-01-05 00:00:00",
1327
+ "ys": {
1328
+ "deepseek/deepseek-chat-v3.1": 927115712,
1329
+ "qwen/qwen3-vl-30b-a3b-instruct": 639076399,
1330
+ "minimax/minimax-m2.1": 446292514,
1331
+ "moonshotai/kimi-k2-0905": 444516672,
1332
+ "openai/gpt-oss-120b": 334046721,
1333
+ "deepseek/deepseek-chat-v3-0324": 232936623,
1334
+ "z-ai/glm-4.6": 167251446,
1335
+ "qwen/qwen3-vl-235b-a22b-instruct": 124212642,
1336
+ "qwen/qwen3-235b-a22b-04-28": 106891252,
1337
+ "Others": 322983982
1338
+ }
1339
+ },
1340
+ {
1341
+ "x": "2026-01-06 00:00:00",
1342
+ "ys": {
1343
+ "deepseek/deepseek-chat-v3.1": 657650,
1344
+ "qwen/qwen3-vl-30b-a3b-instruct": 452591,
1345
+ "deepseek/deepseek-chat-v3-0324": 433050,
1346
+ "openai/gpt-oss-120b": 161108,
1347
+ "moonshotai/kimi-k2-0905": 135284,
1348
+ "z-ai/glm-4.6": 115167,
1349
+ "qwen/qwen3-235b-a22b-07-25": 97967,
1350
+ "qwen/qwen3-235b-a22b-04-28": 85683,
1351
+ "qwen/qwen3-vl-235b-a22b-instruct": 51032,
1352
+ "Others": 117174
1353
+ }
1354
+ }
1355
+ ],
1356
+ "fetched_at": "2026-01-06T00:09:40.206131",
1357
+ "success": true
1358
+ }
data/providers/google-vertex.json ADDED
@@ -0,0 +1,1358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "provider": "google-vertex",
3
+ "url": "https://openrouter.ai/provider/google-vertex",
4
+ "data": [
5
+ {
6
+ "x": "2025-10-08 00:00:00",
7
+ "ys": {
8
+ "anthropic/claude-4.5-sonnet-20250929": 58455221003,
9
+ "google/gemini-2.5-flash": 42445071093,
10
+ "anthropic/claude-4-sonnet-20250522": 24718767827,
11
+ "google/gemini-2.5-pro": 18476915441,
12
+ "google/gemini-2.5-flash-lite": 7255072281,
13
+ "google/gemini-2.0-flash-001": 6903391868,
14
+ "anthropic/claude-3-7-sonnet-20250219": 3922354082,
15
+ "google/gemini-2.5-flash-preview-09-2025": 3675059898,
16
+ "google/gemini-2.0-flash-lite-001": 3297691256,
17
+ "Others": 7740402522
18
+ }
19
+ },
20
+ {
21
+ "x": "2025-10-09 00:00:00",
22
+ "ys": {
23
+ "anthropic/claude-4.5-sonnet-20250929": 51127443283,
24
+ "google/gemini-2.5-flash": 43481997447,
25
+ "anthropic/claude-4-sonnet-20250522": 29344208855,
26
+ "google/gemini-2.5-pro": 19906541498,
27
+ "google/gemini-2.5-flash-lite": 8538243045,
28
+ "google/gemini-2.0-flash-001": 7143843765,
29
+ "google/gemini-2.5-flash-preview-09-2025": 5892035317,
30
+ "openai/gpt-oss-20b": 4304836228,
31
+ "anthropic/claude-3-7-sonnet-20250219": 4023767559,
32
+ "Others": 10629278938
33
+ }
34
+ },
35
+ {
36
+ "x": "2025-10-10 00:00:00",
37
+ "ys": {
38
+ "anthropic/claude-4.5-sonnet-20250929": 39777421999,
39
+ "google/gemini-2.5-flash": 34749392493,
40
+ "anthropic/claude-4-sonnet-20250522": 24956393474,
41
+ "google/gemini-2.5-pro": 19420499704,
42
+ "google/gemini-2.0-flash-001": 6751436219,
43
+ "google/gemini-2.5-flash-lite": 6513648324,
44
+ "google/gemini-2.5-flash-preview-09-2025": 4291184245,
45
+ "anthropic/claude-3-7-sonnet-20250219": 4201358435,
46
+ "google/gemini-2.0-flash-lite-001": 3094055418,
47
+ "Others": 10034425001
48
+ }
49
+ },
50
+ {
51
+ "x": "2025-10-11 00:00:00",
52
+ "ys": {
53
+ "anthropic/claude-4.5-sonnet-20250929": 42839223759,
54
+ "google/gemini-2.5-flash": 30626142352,
55
+ "anthropic/claude-4-sonnet-20250522": 19923373096,
56
+ "google/gemini-2.5-pro": 16625016984,
57
+ "google/gemini-2.5-flash-lite": 6181425245,
58
+ "google/gemini-2.0-flash-001": 5237242638,
59
+ "openai/gpt-oss-20b": 4541192348,
60
+ "anthropic/claude-3-7-sonnet-20250219": 3775222867,
61
+ "google/gemini-2.0-flash-lite-001": 2944761897,
62
+ "Others": 8946064207
63
+ }
64
+ },
65
+ {
66
+ "x": "2025-10-12 00:00:00",
67
+ "ys": {
68
+ "anthropic/claude-4.5-sonnet-20250929": 31192545744,
69
+ "google/gemini-2.5-flash": 30610933398,
70
+ "google/gemini-2.5-pro": 15315854163,
71
+ "anthropic/claude-4-sonnet-20250522": 8732191944,
72
+ "google/gemini-2.5-flash-lite": 6208997098,
73
+ "google/gemini-2.0-flash-001": 4787744621,
74
+ "openai/gpt-oss-20b": 4409217532,
75
+ "anthropic/claude-3-7-sonnet-20250219": 4117608453,
76
+ "google/gemini-2.0-flash-lite-001": 3275322833,
77
+ "Others": 6625182671
78
+ }
79
+ },
80
+ {
81
+ "x": "2025-10-13 00:00:00",
82
+ "ys": {
83
+ "google/gemini-2.5-flash": 42467683443,
84
+ "google/gemini-2.5-pro": 19826076853,
85
+ "anthropic/claude-4.5-sonnet-20250929": 16306545446,
86
+ "anthropic/claude-4-sonnet-20250522": 10650286708,
87
+ "openai/gpt-oss-20b": 8381328150,
88
+ "google/gemini-2.0-flash-001": 8117615938,
89
+ "google/gemini-2.5-flash-lite": 7942723174,
90
+ "anthropic/claude-3-7-sonnet-20250219": 3479254519,
91
+ "google/gemini-2.5-flash-preview-09-2025": 3191131055,
92
+ "Others": 10063324283
93
+ }
94
+ },
95
+ {
96
+ "x": "2025-10-14 00:00:00",
97
+ "ys": {
98
+ "google/gemini-2.5-flash": 41868750273,
99
+ "google/gemini-2.5-pro": 19613826744,
100
+ "anthropic/claude-4-sonnet-20250522": 9089425891,
101
+ "anthropic/claude-4.5-sonnet-20250929": 8414099294,
102
+ "google/gemini-2.5-flash-lite": 8194215723,
103
+ "google/gemini-2.0-flash-001": 8114063966,
104
+ "google/gemini-2.5-flash-preview-09-2025": 5391179364,
105
+ "google/gemini-2.0-flash-lite-001": 3250812926,
106
+ "google/gemini-2.5-flash-lite-preview-09-2025": 2546016318,
107
+ "Others": 7723953712
108
+ }
109
+ },
110
+ {
111
+ "x": "2025-10-15 00:00:00",
112
+ "ys": {
113
+ "google/gemini-2.5-flash": 45459927778,
114
+ "anthropic/claude-4.5-sonnet-20250929": 33446705495,
115
+ "google/gemini-2.5-pro": 19563398823,
116
+ "anthropic/claude-4-sonnet-20250522": 15144364596,
117
+ "google/gemini-2.0-flash-001": 8453254461,
118
+ "google/gemini-2.5-flash-lite": 7758522079,
119
+ "google/gemini-2.0-flash-lite-001": 6811580477,
120
+ "google/gemini-2.5-flash-preview-09-2025": 4729874520,
121
+ "anthropic/claude-3-7-sonnet-20250219": 2558652962,
122
+ "Others": 5817737485
123
+ }
124
+ },
125
+ {
126
+ "x": "2025-10-16 00:00:00",
127
+ "ys": {
128
+ "anthropic/claude-4.5-sonnet-20250929": 38890917438,
129
+ "google/gemini-2.5-flash": 35530737744,
130
+ "anthropic/claude-4-sonnet-20250522": 20181863074,
131
+ "google/gemini-2.5-pro": 17825571116,
132
+ "google/gemini-2.5-flash-lite": 8660294785,
133
+ "google/gemini-2.0-flash-001": 7687117645,
134
+ "google/gemini-2.5-flash-preview-09-2025": 5989157846,
135
+ "google/gemini-2.5-flash-lite-preview-09-2025": 3525925256,
136
+ "google/gemini-2.0-flash-lite-001": 3100662827,
137
+ "Others": 9831688139
138
+ }
139
+ },
140
+ {
141
+ "x": "2025-10-17 00:00:00",
142
+ "ys": {
143
+ "anthropic/claude-4.5-sonnet-20250929": 50087525639,
144
+ "google/gemini-2.5-flash": 33569513705,
145
+ "anthropic/claude-4-sonnet-20250522": 19208826129,
146
+ "google/gemini-2.5-pro": 17336312850,
147
+ "google/gemini-2.5-flash-lite": 8651076484,
148
+ "google/gemini-2.0-flash-001": 6763210192,
149
+ "google/gemini-2.5-flash-preview-09-2025": 5901668034,
150
+ "google/gemini-2.5-flash-lite-preview-09-2025": 3224273205,
151
+ "google/gemini-2.0-flash-lite-001": 2936507780,
152
+ "Others": 8388445446
153
+ }
154
+ },
155
+ {
156
+ "x": "2025-10-18 00:00:00",
157
+ "ys": {
158
+ "anthropic/claude-4.5-sonnet-20250929": 36251170132,
159
+ "google/gemini-2.5-flash": 26859373057,
160
+ "google/gemini-2.5-pro": 15922871599,
161
+ "anthropic/claude-4-sonnet-20250522": 9636941888,
162
+ "google/gemini-2.5-flash-lite": 6938572160,
163
+ "anthropic/claude-3-7-sonnet-20250219": 6202351254,
164
+ "google/gemini-2.0-flash-001": 5349564950,
165
+ "google/gemini-2.5-flash-lite-preview-09-2025": 3990044444,
166
+ "google/gemini-2.0-flash-lite-001": 2515002654,
167
+ "Others": 7676841605
168
+ }
169
+ },
170
+ {
171
+ "x": "2025-10-19 00:00:00",
172
+ "ys": {
173
+ "google/gemini-2.5-flash": 35162050404,
174
+ "anthropic/claude-4.5-sonnet-20250929": 30265288738,
175
+ "google/gemini-2.5-pro": 14724962160,
176
+ "anthropic/claude-4-sonnet-20250522": 10860684661,
177
+ "google/gemini-2.5-flash-lite": 8306343612,
178
+ "anthropic/claude-3-7-sonnet-20250219": 8294469799,
179
+ "google/gemini-2.0-flash-001": 5360468166,
180
+ "google/gemini-2.5-flash-preview-09-2025": 3137441489,
181
+ "google/gemini-2.0-flash-lite-001": 2307700462,
182
+ "Others": 7520835853
183
+ }
184
+ },
185
+ {
186
+ "x": "2025-10-20 00:00:00",
187
+ "ys": {
188
+ "anthropic/claude-4.5-sonnet-20250929": 44822707277,
189
+ "google/gemini-2.5-flash": 31225609863,
190
+ "anthropic/claude-4-sonnet-20250522": 20302040929,
191
+ "google/gemini-2.5-pro": 18270585767,
192
+ "anthropic/claude-3-7-sonnet-20250219": 12734043137,
193
+ "google/gemini-2.5-flash-lite": 12270787955,
194
+ "google/gemini-2.0-flash-001": 7086674364,
195
+ "google/gemini-2.5-flash-preview-09-2025": 5720316153,
196
+ "anthropic/claude-4.5-haiku-20251001": 3199177835,
197
+ "Others": 9414524840
198
+ }
199
+ },
200
+ {
201
+ "x": "2025-10-21 00:00:00",
202
+ "ys": {
203
+ "anthropic/claude-4.5-sonnet-20250929": 43048130677,
204
+ "google/gemini-2.5-flash": 40182551457,
205
+ "anthropic/claude-4-sonnet-20250522": 19540158325,
206
+ "google/gemini-2.5-pro": 18494772946,
207
+ "google/gemini-2.5-flash-lite": 11706668053,
208
+ "google/gemini-2.0-flash-001": 11327976598,
209
+ "anthropic/claude-3-7-sonnet-20250219": 9769596689,
210
+ "google/gemini-2.5-flash-preview-09-2025": 6565318341,
211
+ "google/gemini-2.0-flash-lite-001": 3218258995,
212
+ "Others": 10813936166
213
+ }
214
+ },
215
+ {
216
+ "x": "2025-10-22 00:00:00",
217
+ "ys": {
218
+ "anthropic/claude-4.5-sonnet-20250929": 37949334422,
219
+ "google/gemini-2.5-flash": 36408820878,
220
+ "google/gemini-2.5-pro": 18986024554,
221
+ "anthropic/claude-4-sonnet-20250522": 15712325087,
222
+ "anthropic/claude-4.5-haiku-20251001": 14719028162,
223
+ "google/gemini-2.5-flash-lite": 14092302095,
224
+ "google/gemini-2.0-flash-001": 7646461911,
225
+ "anthropic/claude-3-7-sonnet-20250219": 4904694215,
226
+ "google/gemini-2.5-flash-preview-09-2025": 3829082308,
227
+ "Others": 9939620850
228
+ }
229
+ },
230
+ {
231
+ "x": "2025-10-23 00:00:00",
232
+ "ys": {
233
+ "anthropic/claude-4.5-sonnet-20250929": 48927506763,
234
+ "google/gemini-2.5-flash": 36771961383,
235
+ "google/gemini-2.5-pro": 20022190718,
236
+ "anthropic/claude-4-sonnet-20250522": 17210684726,
237
+ "google/gemini-2.5-flash-lite": 11302606579,
238
+ "google/gemini-2.0-flash-001": 7047729044,
239
+ "anthropic/claude-3-7-sonnet-20250219": 4816450443,
240
+ "google/gemini-2.0-flash-lite-001": 3045133230,
241
+ "anthropic/claude-4.5-haiku-20251001": 2930449194,
242
+ "Others": 10620817234
243
+ }
244
+ },
245
+ {
246
+ "x": "2025-10-24 00:00:00",
247
+ "ys": {
248
+ "anthropic/claude-4.5-sonnet-20250929": 43644433803,
249
+ "google/gemini-2.5-flash": 42359198770,
250
+ "google/gemini-2.5-pro": 18416590309,
251
+ "anthropic/claude-4-sonnet-20250522": 13166624755,
252
+ "google/gemini-2.5-flash-lite": 11674715112,
253
+ "google/gemini-2.0-flash-001": 6201929236,
254
+ "anthropic/claude-3-7-sonnet-20250219": 5014774717,
255
+ "anthropic/claude-4.5-haiku-20251001": 3315475368,
256
+ "google/gemini-2.0-flash-lite-001": 2984512715,
257
+ "Others": 10126905651
258
+ }
259
+ },
260
+ {
261
+ "x": "2025-10-25 00:00:00",
262
+ "ys": {
263
+ "anthropic/claude-4.5-sonnet-20250929": 33580957356,
264
+ "google/gemini-2.5-flash": 32065059503,
265
+ "google/gemini-2.5-pro": 14433743955,
266
+ "anthropic/claude-4-sonnet-20250522": 10917533919,
267
+ "google/gemini-2.5-flash-lite": 8469000418,
268
+ "google/gemini-2.0-flash-001": 5090741629,
269
+ "google/gemini-2.5-flash-preview-09-2025": 3846927141,
270
+ "anthropic/claude-3-7-sonnet-20250219": 3597739487,
271
+ "anthropic/claude-4.5-haiku-20251001": 2771106654,
272
+ "Others": 9205139074
273
+ }
274
+ },
275
+ {
276
+ "x": "2025-10-26 00:00:00",
277
+ "ys": {
278
+ "google/gemini-2.5-flash": 32854813755,
279
+ "anthropic/claude-4.5-sonnet-20250929": 32202169017,
280
+ "google/gemini-2.5-pro": 16433173066,
281
+ "anthropic/claude-4-sonnet-20250522": 8105790055,
282
+ "google/gemini-2.5-flash-lite": 7520870097,
283
+ "google/gemini-2.0-flash-001": 4783124320,
284
+ "anthropic/claude-3-7-sonnet-20250219": 3922060196,
285
+ "google/gemini-2.5-flash-preview-09-2025": 3384873199,
286
+ "anthropic/claude-4.5-haiku-20251001": 2450681803,
287
+ "Others": 7817711666
288
+ }
289
+ },
290
+ {
291
+ "x": "2025-10-27 00:00:00",
292
+ "ys": {
293
+ "anthropic/claude-4.5-sonnet-20250929": 59156956935,
294
+ "google/gemini-2.5-flash": 41995991582,
295
+ "google/gemini-2.5-pro": 20068554676,
296
+ "anthropic/claude-4-sonnet-20250522": 14593195599,
297
+ "google/gemini-2.5-flash-lite": 13118205601,
298
+ "google/gemini-2.0-flash-001": 6045151282,
299
+ "google/gemini-2.5-flash-preview-09-2025": 5355367698,
300
+ "anthropic/claude-3-7-sonnet-20250219": 5258404888,
301
+ "google/gemini-2.0-flash-lite-001": 4090653589,
302
+ "Others": 10254281590
303
+ }
304
+ },
305
+ {
306
+ "x": "2025-10-28 00:00:00",
307
+ "ys": {
308
+ "anthropic/claude-4.5-sonnet-20250929": 70859802771,
309
+ "google/gemini-2.5-flash": 42968407975,
310
+ "google/gemini-2.5-pro": 22204150396,
311
+ "anthropic/claude-4-sonnet-20250522": 14104929120,
312
+ "google/gemini-2.5-flash-lite": 12755604612,
313
+ "google/gemini-2.0-flash-001": 7531620811,
314
+ "google/gemini-2.5-flash-preview-09-2025": 6196350827,
315
+ "anthropic/claude-3-7-sonnet-20250219": 5003306553,
316
+ "anthropic/claude-4.5-haiku-20251001": 4130012009,
317
+ "Others": 10901510407
318
+ }
319
+ },
320
+ {
321
+ "x": "2025-10-29 00:00:00",
322
+ "ys": {
323
+ "anthropic/claude-4.5-sonnet-20250929": 69874791709,
324
+ "google/gemini-2.5-flash": 42987576822,
325
+ "google/gemini-2.5-pro": 22076702208,
326
+ "google/gemini-2.5-flash-lite": 17453263565,
327
+ "anthropic/claude-4-sonnet-20250522": 14343819739,
328
+ "google/gemini-2.0-flash-001": 10494882480,
329
+ "anthropic/claude-3-7-sonnet-20250219": 5180139699,
330
+ "google/gemini-2.0-flash-lite-001": 4641770602,
331
+ "anthropic/claude-4.5-haiku-20251001": 4594829843,
332
+ "Others": 12062935714
333
+ }
334
+ },
335
+ {
336
+ "x": "2025-10-30 00:00:00",
337
+ "ys": {
338
+ "anthropic/claude-4.5-sonnet-20250929": 63321423162,
339
+ "google/gemini-2.5-flash": 42167775129,
340
+ "google/gemini-2.5-pro": 20116107086,
341
+ "google/gemini-2.5-flash-lite": 15888965630,
342
+ "anthropic/claude-4-sonnet-20250522": 13218520595,
343
+ "google/gemini-2.0-flash-001": 7774528233,
344
+ "anthropic/claude-3-7-sonnet-20250219": 4918626689,
345
+ "google/gemini-2.0-flash-lite-001": 4552387205,
346
+ "anthropic/claude-4.5-haiku-20251001": 4450671483,
347
+ "Others": 11478933874
348
+ }
349
+ },
350
+ {
351
+ "x": "2025-10-31 00:00:00",
352
+ "ys": {
353
+ "anthropic/claude-4.5-sonnet-20250929": 61756055692,
354
+ "google/gemini-2.5-flash": 45973518792,
355
+ "google/gemini-2.5-pro": 21218302248,
356
+ "google/gemini-2.5-flash-lite": 13430086327,
357
+ "anthropic/claude-4-sonnet-20250522": 12801259013,
358
+ "google/gemini-2.0-flash-001": 7463044537,
359
+ "google/gemini-2.5-flash-preview-09-2025": 4273106751,
360
+ "google/gemini-2.0-flash-lite-001": 4120344662,
361
+ "anthropic/claude-3-7-sonnet-20250219": 3770229066,
362
+ "Others": 9547436847
363
+ }
364
+ },
365
+ {
366
+ "x": "2025-11-01 00:00:00",
367
+ "ys": {
368
+ "anthropic/claude-4.5-sonnet-20250929": 42111763937,
369
+ "google/gemini-2.5-flash": 34047768276,
370
+ "google/gemini-2.5-pro": 16181536025,
371
+ "google/gemini-2.5-flash-lite": 10520527286,
372
+ "anthropic/claude-4-sonnet-20250522": 7333005480,
373
+ "google/gemini-2.0-flash-001": 6216492585,
374
+ "google/gemini-2.5-flash-preview-09-2025": 3866332536,
375
+ "google/gemini-2.0-flash-lite-001": 3331232642,
376
+ "anthropic/claude-3-7-sonnet-20250219": 3173992143,
377
+ "Others": 7142249263
378
+ }
379
+ },
380
+ {
381
+ "x": "2025-11-02 00:00:00",
382
+ "ys": {
383
+ "anthropic/claude-4.5-sonnet-20250929": 39912874927,
384
+ "google/gemini-2.5-flash": 33826616202,
385
+ "google/gemini-2.5-pro": 17391813231,
386
+ "google/gemini-2.5-flash-lite": 9948985993,
387
+ "anthropic/claude-4-sonnet-20250522": 6488346747,
388
+ "google/gemini-2.0-flash-001": 6136105468,
389
+ "anthropic/claude-3-7-sonnet-20250219": 3911025521,
390
+ "google/gemini-2.5-flash-preview-09-2025": 3713665071,
391
+ "google/gemini-2.0-flash-lite-001": 2999801001,
392
+ "Others": 6864960363
393
+ }
394
+ },
395
+ {
396
+ "x": "2025-11-03 00:00:00",
397
+ "ys": {
398
+ "anthropic/claude-4.5-sonnet-20250929": 62914567835,
399
+ "google/gemini-2.5-flash": 44936721640,
400
+ "google/gemini-2.5-pro": 20587455474,
401
+ "google/gemini-2.5-flash-lite": 14389871319,
402
+ "anthropic/claude-4-sonnet-20250522": 12076830865,
403
+ "google/gemini-2.0-flash-001": 8747303569,
404
+ "google/gemini-2.0-flash-lite-001": 5110305200,
405
+ "anthropic/claude-3-7-sonnet-20250219": 4717053547,
406
+ "google/gemini-2.5-flash-preview-09-2025": 3176761761,
407
+ "Others": 9632607036
408
+ }
409
+ },
410
+ {
411
+ "x": "2025-11-04 00:00:00",
412
+ "ys": {
413
+ "anthropic/claude-4.5-sonnet-20250929": 49088945455,
414
+ "google/gemini-2.5-flash": 43995913322,
415
+ "google/gemini-2.5-pro": 21869332665,
416
+ "google/gemini-2.5-flash-lite": 15234591941,
417
+ "anthropic/claude-4-sonnet-20250522": 12174894705,
418
+ "google/gemini-2.0-flash-001": 7354859346,
419
+ "anthropic/claude-3-7-sonnet-20250219": 5215670561,
420
+ "google/gemini-2.0-flash-lite-001": 3501966340,
421
+ "anthropic/claude-4.5-haiku-20251001": 3250448185,
422
+ "Others": 8716839389
423
+ }
424
+ },
425
+ {
426
+ "x": "2025-11-05 00:00:00",
427
+ "ys": {
428
+ "anthropic/claude-4.5-sonnet-20250929": 53389454375,
429
+ "google/gemini-2.5-flash": 50055307826,
430
+ "google/gemini-2.5-pro": 19971404296,
431
+ "google/gemini-2.5-flash-lite": 15311968304,
432
+ "anthropic/claude-4-sonnet-20250522": 14960536692,
433
+ "google/gemini-2.0-flash-001": 7971759609,
434
+ "anthropic/claude-3-7-sonnet-20250219": 5148511830,
435
+ "anthropic/claude-4.5-haiku-20251001": 3634523792,
436
+ "google/gemini-2.5-flash-preview-09-2025": 3095350476,
437
+ "Others": 9669925591
438
+ }
439
+ },
440
+ {
441
+ "x": "2025-11-06 00:00:00",
442
+ "ys": {
443
+ "google/gemini-2.5-flash": 57113592583,
444
+ "anthropic/claude-4.5-sonnet-20250929": 51432762675,
445
+ "google/gemini-2.5-pro": 23813684912,
446
+ "google/gemini-2.5-flash-lite": 17352763131,
447
+ "anthropic/claude-4-sonnet-20250522": 12906812710,
448
+ "google/gemini-2.0-flash-001": 7794767609,
449
+ "google/gemini-2.5-flash-lite-preview-09-2025": 5151592943,
450
+ "anthropic/claude-3-7-sonnet-20250219": 5009363362,
451
+ "google/gemini-2.5-flash-preview-09-2025": 4136171804,
452
+ "Others": 10657905577
453
+ }
454
+ },
455
+ {
456
+ "x": "2025-11-07 00:00:00",
457
+ "ys": {
458
+ "anthropic/claude-4.5-sonnet-20250929": 53224962787,
459
+ "google/gemini-2.5-flash": 47233100502,
460
+ "google/gemini-2.5-pro": 19600973379,
461
+ "google/gemini-2.5-flash-lite": 14203736520,
462
+ "anthropic/claude-4-sonnet-20250522": 12948132686,
463
+ "google/gemini-2.0-flash-001": 6977731725,
464
+ "anthropic/claude-4.5-haiku-20251001": 5025020837,
465
+ "anthropic/claude-3-7-sonnet-20250219": 4824797917,
466
+ "google/gemini-2.0-flash-lite-001": 3576115162,
467
+ "Others": 10431213140
468
+ }
469
+ },
470
+ {
471
+ "x": "2025-11-08 00:00:00",
472
+ "ys": {
473
+ "google/gemini-2.5-flash": 50735359026,
474
+ "anthropic/claude-4.5-sonnet-20250929": 40996535392,
475
+ "google/gemini-2.5-pro": 16311418308,
476
+ "google/gemini-2.5-flash-lite": 12329016694,
477
+ "anthropic/claude-4-sonnet-20250522": 6200178760,
478
+ "google/gemini-2.0-flash-001": 5534868385,
479
+ "anthropic/claude-3-7-sonnet-20250219": 3553546905,
480
+ "google/gemini-2.0-flash-lite-001": 3189102884,
481
+ "anthropic/claude-4.5-haiku-20251001": 3002954851,
482
+ "Others": 6628590288
483
+ }
484
+ },
485
+ {
486
+ "x": "2025-11-09 00:00:00",
487
+ "ys": {
488
+ "google/gemini-2.5-flash": 51965401706,
489
+ "anthropic/claude-4.5-sonnet-20250929": 37945689473,
490
+ "google/gemini-2.5-pro": 17600214380,
491
+ "google/gemini-2.5-flash-lite": 9781709240,
492
+ "anthropic/claude-4-sonnet-20250522": 6288390754,
493
+ "google/gemini-2.0-flash-001": 6157685645,
494
+ "anthropic/claude-3-7-sonnet-20250219": 3725200061,
495
+ "google/gemini-2.0-flash-lite-001": 3040797559,
496
+ "anthropic/claude-4.5-haiku-20251001": 2076705170,
497
+ "Others": 6010728713
498
+ }
499
+ },
500
+ {
501
+ "x": "2025-11-10 00:00:00",
502
+ "ys": {
503
+ "google/gemini-2.5-flash": 51364644584,
504
+ "anthropic/claude-4.5-sonnet-20250929": 45234515098,
505
+ "google/gemini-2.5-pro": 23754711685,
506
+ "google/gemini-2.5-flash-lite": 17222745109,
507
+ "anthropic/claude-4-sonnet-20250522": 13552937440,
508
+ "google/gemini-2.0-flash-001": 8741936047,
509
+ "anthropic/claude-3-7-sonnet-20250219": 4390089029,
510
+ "google/gemini-2.5-flash-lite-preview-09-2025": 4059529538,
511
+ "anthropic/claude-4.5-haiku-20251001": 3685273669,
512
+ "Others": 11378505737
513
+ }
514
+ },
515
+ {
516
+ "x": "2025-11-11 00:00:00",
517
+ "ys": {
518
+ "google/gemini-2.5-flash": 52037251553,
519
+ "anthropic/claude-4.5-sonnet-20250929": 51079052313,
520
+ "google/gemini-2.5-pro": 23809461911,
521
+ "google/gemini-2.5-flash-lite": 15495919990,
522
+ "anthropic/claude-4-sonnet-20250522": 11739316421,
523
+ "google/gemini-2.0-flash-001": 8466392412,
524
+ "google/gemini-2.5-flash-lite-preview-09-2025": 5905430072,
525
+ "google/gemini-2.0-flash-lite-001": 4852168611,
526
+ "anthropic/claude-3-7-sonnet-20250219": 4126299340,
527
+ "Others": 13033869127
528
+ }
529
+ },
530
+ {
531
+ "x": "2025-11-12 00:00:00",
532
+ "ys": {
533
+ "anthropic/claude-4.5-sonnet-20250929": 56018650305,
534
+ "google/gemini-2.5-flash": 51904766693,
535
+ "google/gemini-2.5-pro": 21544873097,
536
+ "google/gemini-2.5-flash-lite": 14415321292,
537
+ "anthropic/claude-4-sonnet-20250522": 11622782721,
538
+ "google/gemini-2.0-flash-001": 8940032449,
539
+ "google/gemini-2.5-flash-lite-preview-09-2025": 5964790921,
540
+ "anthropic/claude-4.5-haiku-20251001": 4257065363,
541
+ "google/gemini-2.0-flash-lite-001": 4008332474,
542
+ "Others": 10887612051
543
+ }
544
+ },
545
+ {
546
+ "x": "2025-11-13 00:00:00",
547
+ "ys": {
548
+ "anthropic/claude-4.5-sonnet-20250929": 59590731582,
549
+ "google/gemini-2.5-flash": 53480845714,
550
+ "google/gemini-2.5-pro": 21747443283,
551
+ "google/gemini-2.5-flash-lite": 16323513501,
552
+ "anthropic/claude-4-sonnet-20250522": 12948626789,
553
+ "google/gemini-2.0-flash-001": 8436815809,
554
+ "google/gemini-2.5-flash-lite-preview-09-2025": 6028576099,
555
+ "anthropic/claude-3-7-sonnet-20250219": 5295508623,
556
+ "anthropic/claude-4.5-haiku-20251001": 4243302516,
557
+ "Others": 13108368853
558
+ }
559
+ },
560
+ {
561
+ "x": "2025-11-14 00:00:00",
562
+ "ys": {
563
+ "google/gemini-2.5-flash": 51257639746,
564
+ "anthropic/claude-4.5-sonnet-20250929": 44708735129,
565
+ "google/gemini-2.5-pro": 19575053432,
566
+ "google/gemini-2.5-flash-lite": 14364923403,
567
+ "anthropic/claude-4-sonnet-20250522": 10880251440,
568
+ "google/gemini-2.0-flash-001": 8059642309,
569
+ "google/gemini-2.5-flash-lite-preview-09-2025": 6072901121,
570
+ "anthropic/claude-4.5-haiku-20251001": 5325613467,
571
+ "anthropic/claude-3-7-sonnet-20250219": 4596472731,
572
+ "Others": 14011660469
573
+ }
574
+ },
575
+ {
576
+ "x": "2025-11-15 00:00:00",
577
+ "ys": {
578
+ "google/gemini-2.5-flash": 39411913278,
579
+ "anthropic/claude-4.5-sonnet-20250929": 33720978038,
580
+ "google/gemini-2.5-pro": 16387222200,
581
+ "google/gemini-2.5-flash-lite": 14885186000,
582
+ "anthropic/claude-4-sonnet-20250522": 6289519921,
583
+ "google/gemini-2.0-flash-001": 6244238694,
584
+ "anthropic/claude-3-7-sonnet-20250219": 3664715494,
585
+ "anthropic/claude-4.5-haiku-20251001": 3425218540,
586
+ "google/gemini-2.0-flash-lite-001": 2707595363,
587
+ "Others": 9013534540
588
+ }
589
+ },
590
+ {
591
+ "x": "2025-11-16 00:00:00",
592
+ "ys": {
593
+ "google/gemini-2.5-flash": 41593646720,
594
+ "anthropic/claude-4.5-sonnet-20250929": 41525757385,
595
+ "google/gemini-2.5-flash-lite": 17355130549,
596
+ "google/gemini-2.5-pro": 16627180850,
597
+ "anthropic/claude-4-sonnet-20250522": 6419105187,
598
+ "google/gemini-2.0-flash-001": 6344289459,
599
+ "anthropic/claude-3-7-sonnet-20250219": 4062544388,
600
+ "google/gemini-2.0-flash-lite-001": 3098987758,
601
+ "anthropic/claude-4.5-haiku-20251001": 2121713366,
602
+ "Others": 7814216046
603
+ }
604
+ },
605
+ {
606
+ "x": "2025-11-17 00:00:00",
607
+ "ys": {
608
+ "google/gemini-2.5-flash": 50055463978,
609
+ "anthropic/claude-4.5-sonnet-20250929": 46480940621,
610
+ "google/gemini-2.5-pro": 26267832381,
611
+ "google/gemini-2.5-flash-lite": 20579430480,
612
+ "anthropic/claude-4-sonnet-20250522": 10862377077,
613
+ "google/gemini-2.0-flash-001": 7722317800,
614
+ "google/gemini-2.5-flash-lite-preview-09-2025": 7614226240,
615
+ "anthropic/claude-3-7-sonnet-20250219": 5011692557,
616
+ "google/gemini-2.5-flash-preview-09-2025": 4791014547,
617
+ "Others": 13645263630
618
+ }
619
+ },
620
+ {
621
+ "x": "2025-11-18 00:00:00",
622
+ "ys": {
623
+ "google/gemini-2.5-flash": 52728895683,
624
+ "anthropic/claude-4.5-sonnet-20250929": 44413785313,
625
+ "google/gemini-2.5-pro": 22134351509,
626
+ "google/gemini-2.5-flash-lite": 20238716716,
627
+ "anthropic/claude-4-sonnet-20250522": 10693895030,
628
+ "google/gemini-2.5-flash-lite-preview-09-2025": 8915152151,
629
+ "google/gemini-2.0-flash-001": 8013368739,
630
+ "google/gemini-3-pro-preview-20251117": 5622289922,
631
+ "google/gemini-2.5-flash-preview-09-2025": 5357143088,
632
+ "Others": 17815693846
633
+ }
634
+ },
635
+ {
636
+ "x": "2025-11-19 00:00:00",
637
+ "ys": {
638
+ "google/gemini-2.5-flash": 50809292427,
639
+ "anthropic/claude-4.5-sonnet-20250929": 44913600051,
640
+ "google/gemini-2.5-pro": 18948433837,
641
+ "google/gemini-2.5-flash-lite": 17616067288,
642
+ "google/gemini-3-pro-preview-20251117": 14806392707,
643
+ "google/gemini-2.5-flash-lite-preview-09-2025": 11527530214,
644
+ "anthropic/claude-4-sonnet-20250522": 9948148523,
645
+ "google/gemini-2.0-flash-001": 9737249117,
646
+ "anthropic/claude-4.5-haiku-20251001": 5515850537,
647
+ "Others": 19450169714
648
+ }
649
+ },
650
+ {
651
+ "x": "2025-11-20 00:00:00",
652
+ "ys": {
653
+ "google/gemini-2.5-flash": 50694218626,
654
+ "anthropic/claude-4.5-sonnet-20250929": 46745203270,
655
+ "google/gemini-2.5-pro": 17655779812,
656
+ "google/gemini-2.5-flash-lite": 16228834737,
657
+ "google/gemini-3-pro-preview-20251117": 11593793999,
658
+ "anthropic/claude-4-sonnet-20250522": 10816682787,
659
+ "google/gemini-2.0-flash-001": 9553099090,
660
+ "anthropic/claude-4.5-haiku-20251001": 6126156981,
661
+ "google/gemini-2.5-flash-preview-09-2025": 5297378645,
662
+ "Others": 17168679349
663
+ }
664
+ },
665
+ {
666
+ "x": "2025-11-21 00:00:00",
667
+ "ys": {
668
+ "google/gemini-2.5-flash": 47766295382,
669
+ "anthropic/claude-4.5-sonnet-20250929": 40153496264,
670
+ "google/gemini-2.5-pro": 16141548938,
671
+ "google/gemini-2.5-flash-lite": 15181438977,
672
+ "google/gemini-3-pro-preview-20251117": 13174623801,
673
+ "anthropic/claude-4-sonnet-20250522": 9401830587,
674
+ "google/gemini-2.0-flash-001": 7695891381,
675
+ "google/gemini-2.5-flash-lite-preview-09-2025": 5770877984,
676
+ "google/gemini-2.0-flash-lite-001": 4169393453,
677
+ "Others": 15890208269
678
+ }
679
+ },
680
+ {
681
+ "x": "2025-11-22 00:00:00",
682
+ "ys": {
683
+ "google/gemini-2.5-flash": 35071895532,
684
+ "anthropic/claude-4.5-sonnet-20250929": 29148243832,
685
+ "google/gemini-2.5-pro": 16604933799,
686
+ "google/gemini-2.5-flash-lite": 13497912427,
687
+ "google/gemini-2.0-flash-001": 8792902969,
688
+ "google/gemini-3-pro-preview-20251117": 8271375460,
689
+ "google/gemini-2.5-flash-lite-preview-09-2025": 5089379237,
690
+ "anthropic/claude-4-sonnet-20250522": 4545223599,
691
+ "google/gemini-2.0-flash-lite-001": 3474103665,
692
+ "Others": 12051509849
693
+ }
694
+ },
695
+ {
696
+ "x": "2025-11-23 00:00:00",
697
+ "ys": {
698
+ "google/gemini-2.5-flash": 38611246868,
699
+ "google/gemini-2.5-flash-lite": 28404839699,
700
+ "anthropic/claude-4.5-sonnet-20250929": 26200038327,
701
+ "google/gemini-2.5-pro": 17043195270,
702
+ "google/gemini-3-pro-preview-20251117": 9888239966,
703
+ "google/gemini-2.0-flash-001": 7854825119,
704
+ "anthropic/claude-4-sonnet-20250522": 5148896078,
705
+ "google/gemini-2.0-flash-lite-001": 3335076657,
706
+ "google/gemini-2.5-flash-preview-09-2025": 3266087965,
707
+ "Others": 10603715978
708
+ }
709
+ },
710
+ {
711
+ "x": "2025-11-24 00:00:00",
712
+ "ys": {
713
+ "google/gemini-2.5-flash": 50460868781,
714
+ "anthropic/claude-4.5-sonnet-20250929": 45394885280,
715
+ "google/gemini-2.5-flash-lite": 27407262910,
716
+ "google/gemini-2.5-pro": 17899455065,
717
+ "google/gemini-3-pro-preview-20251117": 11282035815,
718
+ "anthropic/claude-4-sonnet-20250522": 10360046207,
719
+ "google/gemini-2.0-flash-001": 8486767360,
720
+ "google/gemini-2.5-flash-lite-preview-09-2025": 6820457221,
721
+ "google/gemini-2.5-flash-preview-09-2025": 4636742930,
722
+ "Others": 15817927581
723
+ }
724
+ },
725
+ {
726
+ "x": "2025-11-25 00:00:00",
727
+ "ys": {
728
+ "google/gemini-2.5-flash": 56152953376,
729
+ "anthropic/claude-4.5-sonnet-20250929": 41027484820,
730
+ "google/gemini-2.5-flash-lite": 30946652029,
731
+ "google/gemini-2.5-pro": 18147003558,
732
+ "google/gemini-2.0-flash-001": 10564733856,
733
+ "google/gemini-3-pro-preview-20251117": 10417897859,
734
+ "anthropic/claude-4-sonnet-20250522": 10411618807,
735
+ "google/gemini-2.5-flash-lite-preview-09-2025": 7745971995,
736
+ "google/gemini-2.5-flash-preview-09-2025": 4868794375,
737
+ "Others": 20402719658
738
+ }
739
+ },
740
+ {
741
+ "x": "2025-11-26 00:00:00",
742
+ "ys": {
743
+ "google/gemini-2.5-flash": 56640428196,
744
+ "anthropic/claude-4.5-sonnet-20250929": 42531170479,
745
+ "google/gemini-2.5-pro": 19754912125,
746
+ "google/gemini-2.5-flash-lite": 18190138250,
747
+ "google/gemini-3-pro-preview-20251117": 13173362087,
748
+ "anthropic/claude-4-sonnet-20250522": 9464967528,
749
+ "google/gemini-2.5-flash-lite-preview-09-2025": 8629311587,
750
+ "google/gemini-2.0-flash-001": 7947255418,
751
+ "anthropic/claude-4.5-opus-20251124": 6565416131,
752
+ "Others": 26124827414
753
+ }
754
+ },
755
+ {
756
+ "x": "2025-11-27 00:00:00",
757
+ "ys": {
758
+ "google/gemini-2.5-flash": 53493211321,
759
+ "anthropic/claude-4.5-sonnet-20250929": 41052767873,
760
+ "google/gemini-2.5-pro": 18050523637,
761
+ "google/gemini-2.5-flash-lite": 15819760094,
762
+ "google/gemini-2.5-flash-preview-09-2025": 12936085174,
763
+ "google/gemini-3-pro-preview-20251117": 12019525697,
764
+ "anthropic/claude-4-sonnet-20250522": 8211165255,
765
+ "google/gemini-2.0-flash-001": 8110107040,
766
+ "google/gemini-2.5-flash-lite-preview-09-2025": 8052949319,
767
+ "Others": 20550554873
768
+ }
769
+ },
770
+ {
771
+ "x": "2025-11-28 00:00:00",
772
+ "ys": {
773
+ "google/gemini-2.5-flash": 48650918572,
774
+ "anthropic/claude-4.5-sonnet-20250929": 30196134014,
775
+ "google/gemini-2.5-flash-preview-09-2025": 16606315720,
776
+ "google/gemini-2.5-pro": 15180332084,
777
+ "google/gemini-2.5-flash-lite": 14200759086,
778
+ "google/gemini-3-pro-preview-20251117": 11738926069,
779
+ "google/gemini-2.0-flash-001": 8984830135,
780
+ "anthropic/claude-4-sonnet-20250522": 8948361284,
781
+ "google/gemini-2.0-flash-lite-001": 6514767783,
782
+ "Others": 23437617464
783
+ }
784
+ },
785
+ {
786
+ "x": "2025-11-29 00:00:00",
787
+ "ys": {
788
+ "google/gemini-2.5-flash": 41112967934,
789
+ "anthropic/claude-4.5-sonnet-20250929": 22743631337,
790
+ "google/gemini-2.5-pro": 14308638057,
791
+ "google/gemini-2.5-flash-lite": 13992682320,
792
+ "google/gemini-2.5-flash-preview-09-2025": 12140347946,
793
+ "google/gemini-3-pro-preview-20251117": 8662882794,
794
+ "anthropic/claude-4-sonnet-20250522": 6432055246,
795
+ "google/gemini-2.0-flash-001": 5936241167,
796
+ "google/gemini-2.0-flash-lite-001": 3527137131,
797
+ "Others": 12638878785
798
+ }
799
+ },
800
+ {
801
+ "x": "2025-11-30 00:00:00",
802
+ "ys": {
803
+ "google/gemini-2.5-flash": 42880333626,
804
+ "anthropic/claude-4.5-sonnet-20250929": 26462559925,
805
+ "google/gemini-2.5-pro": 15851636644,
806
+ "google/gemini-2.5-flash-preview-09-2025": 13548798665,
807
+ "google/gemini-3-pro-preview-20251117": 11420283967,
808
+ "google/gemini-2.5-flash-lite": 9972627088,
809
+ "anthropic/claude-4-sonnet-20250522": 6472598511,
810
+ "google/gemini-2.0-flash-001": 5942246791,
811
+ "anthropic/claude-4.5-opus-20251124": 4232907762,
812
+ "Others": 14595727853
813
+ }
814
+ },
815
+ {
816
+ "x": "2025-12-01 00:00:00",
817
+ "ys": {
818
+ "google/gemini-2.5-flash": 56218028208,
819
+ "anthropic/claude-4.5-sonnet-20250929": 37644738093,
820
+ "google/gemini-2.5-pro": 18835919046,
821
+ "google/gemini-2.5-flash-lite": 12790658290,
822
+ "google/gemini-3-pro-preview-20251117": 11943276464,
823
+ "google/gemini-2.5-flash-preview-09-2025": 11393578905,
824
+ "google/gemini-2.0-flash-001": 10243966821,
825
+ "anthropic/claude-4-sonnet-20250522": 9718359382,
826
+ "anthropic/claude-4.5-opus-20251124": 8229848517,
827
+ "Others": 25394683394
828
+ }
829
+ },
830
+ {
831
+ "x": "2025-12-02 00:00:00",
832
+ "ys": {
833
+ "google/gemini-2.5-flash": 56319728154,
834
+ "anthropic/claude-4.5-sonnet-20250929": 43361555516,
835
+ "google/gemini-2.5-pro": 18457031104,
836
+ "google/gemini-2.5-flash-lite": 16123723873,
837
+ "google/gemini-2.0-flash-001": 11769090780,
838
+ "anthropic/claude-4-sonnet-20250522": 10468079215,
839
+ "google/gemini-2.5-flash-lite-preview-09-2025": 8408445930,
840
+ "google/gemini-3-pro-preview-20251117": 7955196444,
841
+ "anthropic/claude-4.5-opus-20251124": 7750739011,
842
+ "Others": 25809173106
843
+ }
844
+ },
845
+ {
846
+ "x": "2025-12-03 00:00:00",
847
+ "ys": {
848
+ "google/gemini-2.5-flash": 59588737727,
849
+ "anthropic/claude-4.5-sonnet-20250929": 43893010818,
850
+ "google/gemini-2.5-pro": 19440164161,
851
+ "google/gemini-2.5-flash-lite": 16301567887,
852
+ "anthropic/claude-4.5-opus-20251124": 11624484805,
853
+ "anthropic/claude-4-sonnet-20250522": 9531594603,
854
+ "google/gemini-2.0-flash-001": 9188649161,
855
+ "google/gemini-3-pro-preview-20251117": 8822046273,
856
+ "google/gemini-2.5-flash-lite-preview-09-2025": 8263866069,
857
+ "Others": 27784472760
858
+ }
859
+ },
860
+ {
861
+ "x": "2025-12-04 00:00:00",
862
+ "ys": {
863
+ "google/gemini-2.5-flash": 59628954786,
864
+ "anthropic/claude-4.5-sonnet-20250929": 47473749970,
865
+ "google/gemini-2.5-flash-lite": 19089260013,
866
+ "google/gemini-2.5-pro": 17138667755,
867
+ "google/gemini-2.5-flash-preview-09-2025": 15329657658,
868
+ "anthropic/claude-4.5-opus-20251124": 10813241388,
869
+ "anthropic/claude-4-sonnet-20250522": 9582580671,
870
+ "google/gemini-2.0-flash-001": 8556380101,
871
+ "google/gemini-3-pro-preview-20251117": 7946629542,
872
+ "Others": 31420558023
873
+ }
874
+ },
875
+ {
876
+ "x": "2025-12-05 00:00:00",
877
+ "ys": {
878
+ "google/gemini-2.5-flash": 54809946296,
879
+ "anthropic/claude-4.5-sonnet-20250929": 40811018563,
880
+ "google/gemini-2.5-flash-lite": 21409293244,
881
+ "google/gemini-2.5-pro": 18176282454,
882
+ "google/gemini-3-pro-preview-20251117": 12146686554,
883
+ "anthropic/claude-4-sonnet-20250522": 9388643612,
884
+ "google/gemini-2.0-flash-001": 8581306726,
885
+ "anthropic/claude-4.5-opus-20251124": 8013304265,
886
+ "google/gemini-2.5-flash-lite-preview-09-2025": 7342046969,
887
+ "Others": 30738092350
888
+ }
889
+ },
890
+ {
891
+ "x": "2025-12-06 00:00:00",
892
+ "ys": {
893
+ "google/gemini-2.5-flash": 44599504832,
894
+ "anthropic/claude-4.5-sonnet-20250929": 29403819989,
895
+ "google/gemini-2.5-pro": 17209788466,
896
+ "google/gemini-2.5-flash-lite": 15227450496,
897
+ "anthropic/claude-4.5-opus-20251124": 8175944757,
898
+ "google/gemini-3-pro-preview-20251117": 7552041559,
899
+ "google/gemini-2.0-flash-lite-001": 7378646421,
900
+ "anthropic/claude-4-sonnet-20250522": 6680789630,
901
+ "google/gemini-2.0-flash-001": 6389098768,
902
+ "Others": 17271100743
903
+ }
904
+ },
905
+ {
906
+ "x": "2025-12-07 00:00:00",
907
+ "ys": {
908
+ "google/gemini-2.5-flash": 42329277773,
909
+ "anthropic/claude-4.5-sonnet-20250929": 26681478819,
910
+ "google/gemini-2.5-flash-lite": 20952856637,
911
+ "google/gemini-2.5-pro": 17336846547,
912
+ "anthropic/claude-4.5-opus-20251124": 9185514226,
913
+ "google/gemini-3-pro-preview-20251117": 7348608834,
914
+ "anthropic/claude-4-sonnet-20250522": 6500407835,
915
+ "google/gemini-2.0-flash-001": 6361519783,
916
+ "openai/gpt-oss-120b": 5591270613,
917
+ "Others": 14515377511
918
+ }
919
+ },
920
+ {
921
+ "x": "2025-12-08 00:00:00",
922
+ "ys": {
923
+ "google/gemini-2.5-flash": 70635056953,
924
+ "anthropic/claude-4.5-sonnet-20250929": 49527442569,
925
+ "google/gemini-2.5-flash-lite": 23780735518,
926
+ "google/gemini-2.5-pro": 21994447693,
927
+ "google/gemini-2.0-flash-001": 14496040567,
928
+ "google/gemini-3-pro-preview-20251117": 12078668151,
929
+ "anthropic/claude-4-sonnet-20250522": 10503584067,
930
+ "anthropic/claude-4.5-opus-20251124": 6844293663,
931
+ "openai/gpt-oss-120b": 6751608821,
932
+ "Others": 24844188682
933
+ }
934
+ },
935
+ {
936
+ "x": "2025-12-09 00:00:00",
937
+ "ys": {
938
+ "google/gemini-2.5-flash": 73172249687,
939
+ "anthropic/claude-4.5-sonnet-20250929": 49041077397,
940
+ "google/gemini-2.5-flash-lite": 29958239764,
941
+ "google/gemini-2.5-pro": 22186377867,
942
+ "google/gemini-2.0-flash-001": 16823464939,
943
+ "google/gemini-3-pro-preview-20251117": 14374878171,
944
+ "anthropic/claude-4-sonnet-20250522": 11212157580,
945
+ "anthropic/claude-4.5-opus-20251124": 7553499063,
946
+ "google/gemini-2.5-flash-preview-09-2025": 7424923718,
947
+ "Others": 28051352036
948
+ }
949
+ },
950
+ {
951
+ "x": "2025-12-10 00:00:00",
952
+ "ys": {
953
+ "google/gemini-2.5-flash": 66283381252,
954
+ "anthropic/claude-4.5-sonnet-20250929": 55825910950,
955
+ "google/gemini-2.5-flash-lite": 27329777609,
956
+ "google/gemini-2.5-pro": 17294559394,
957
+ "anthropic/claude-4.5-opus-20251124": 13447030257,
958
+ "google/gemini-3-pro-preview-20251117": 11970921914,
959
+ "anthropic/claude-4-sonnet-20250522": 11062931347,
960
+ "google/gemini-2.0-flash-001": 10069682767,
961
+ "google/gemini-2.5-flash-preview-09-2025": 5038720005,
962
+ "Others": 24355976203
963
+ }
964
+ },
965
+ {
966
+ "x": "2025-12-11 00:00:00",
967
+ "ys": {
968
+ "google/gemini-2.5-flash": 63544297193,
969
+ "anthropic/claude-4.5-sonnet-20250929": 45707923291,
970
+ "google/gemini-2.5-flash-lite": 23978822593,
971
+ "google/gemini-2.5-pro": 17782722662,
972
+ "google/gemini-3-pro-preview-20251117": 14652596659,
973
+ "google/gemini-2.0-flash-001": 10065445627,
974
+ "anthropic/claude-4-sonnet-20250522": 9968593077,
975
+ "anthropic/claude-4.5-opus-20251124": 9835549279,
976
+ "google/gemini-2.5-flash-lite-preview-09-2025": 5381505130,
977
+ "Others": 20554398688
978
+ }
979
+ },
980
+ {
981
+ "x": "2025-12-12 00:00:00",
982
+ "ys": {
983
+ "google/gemini-2.5-flash": 60989202168,
984
+ "anthropic/claude-4.5-sonnet-20250929": 39557904609,
985
+ "google/gemini-2.5-flash-lite": 22061882953,
986
+ "google/gemini-2.5-pro": 16335572534,
987
+ "google/gemini-3-pro-preview-20251117": 15147794093,
988
+ "google/gemini-2.0-flash-001": 10459604990,
989
+ "anthropic/claude-4-sonnet-20250522": 7149676725,
990
+ "anthropic/claude-4.5-opus-20251124": 6076803529,
991
+ "openai/gpt-oss-120b": 5120145692,
992
+ "Others": 23608982983
993
+ }
994
+ },
995
+ {
996
+ "x": "2025-12-13 00:00:00",
997
+ "ys": {
998
+ "google/gemini-2.5-flash": 48121693935,
999
+ "anthropic/claude-4.5-sonnet-20250929": 22883236101,
1000
+ "google/gemini-2.5-flash-lite": 15768657636,
1001
+ "google/gemini-2.5-pro": 12370479765,
1002
+ "google/gemini-3-pro-preview-20251117": 10312715570,
1003
+ "google/gemini-2.0-flash-001": 7341891067,
1004
+ "anthropic/claude-4-sonnet-20250522": 4538689890,
1005
+ "openai/gpt-oss-120b": 4330806710,
1006
+ "google/gemini-2.0-flash-lite-001": 3514692453,
1007
+ "Others": 14705957487
1008
+ }
1009
+ },
1010
+ {
1011
+ "x": "2025-12-14 00:00:00",
1012
+ "ys": {
1013
+ "google/gemini-2.5-flash": 43921820336,
1014
+ "anthropic/claude-4.5-sonnet-20250929": 23300659104,
1015
+ "google/gemini-2.5-flash-lite": 14293523717,
1016
+ "google/gemini-2.5-pro": 12380669265,
1017
+ "google/gemini-3-pro-preview-20251117": 12358076016,
1018
+ "openai/gpt-oss-120b": 6516089399,
1019
+ "google/gemini-2.0-flash-001": 6488866067,
1020
+ "anthropic/claude-4-sonnet-20250522": 4679036012,
1021
+ "anthropic/claude-4.5-opus-20251124": 3418930285,
1022
+ "Others": 15223186303
1023
+ }
1024
+ },
1025
+ {
1026
+ "x": "2025-12-15 00:00:00",
1027
+ "ys": {
1028
+ "google/gemini-2.5-flash": 66019293527,
1029
+ "anthropic/claude-4.5-sonnet-20250929": 43702364605,
1030
+ "google/gemini-2.5-flash-lite": 22082712079,
1031
+ "google/gemini-3-pro-preview-20251117": 16981774103,
1032
+ "google/gemini-2.5-pro": 15754290242,
1033
+ "google/gemini-2.0-flash-001": 13264318951,
1034
+ "anthropic/claude-4-sonnet-20250522": 7837391410,
1035
+ "openai/gpt-oss-120b": 7136521519,
1036
+ "google/gemini-2.0-flash-lite-001": 4907117699,
1037
+ "Others": 22817211990
1038
+ }
1039
+ },
1040
+ {
1041
+ "x": "2025-12-16 00:00:00",
1042
+ "ys": {
1043
+ "google/gemini-2.5-flash": 66810182311,
1044
+ "anthropic/claude-4.5-sonnet-20250929": 48266921292,
1045
+ "google/gemini-2.5-flash-lite": 30614530013,
1046
+ "google/gemini-3-pro-preview-20251117": 19918816495,
1047
+ "google/gemini-2.5-pro": 15929127933,
1048
+ "google/gemini-2.0-flash-001": 15375569952,
1049
+ "anthropic/claude-4-sonnet-20250522": 7636635812,
1050
+ "google/gemini-2.0-flash-lite-001": 4974700219,
1051
+ "google/gemini-2.5-flash-preview-09-2025": 4441345031,
1052
+ "Others": 22360343324
1053
+ }
1054
+ },
1055
+ {
1056
+ "x": "2025-12-17 00:00:00",
1057
+ "ys": {
1058
+ "google/gemini-2.5-flash": 68726357507,
1059
+ "anthropic/claude-4.5-sonnet-20250929": 45895839724,
1060
+ "google/gemini-2.5-flash-lite": 30836825512,
1061
+ "google/gemini-3-pro-preview-20251117": 17608858308,
1062
+ "google/gemini-2.5-pro": 14510096481,
1063
+ "google/gemini-2.0-flash-001": 12106908789,
1064
+ "anthropic/claude-4-sonnet-20250522": 7495887614,
1065
+ "anthropic/claude-4.5-opus-20251124": 4128297088,
1066
+ "google/gemini-2.0-flash-lite-001": 3894295966,
1067
+ "Others": 24858262898
1068
+ }
1069
+ },
1070
+ {
1071
+ "x": "2025-12-18 00:00:00",
1072
+ "ys": {
1073
+ "google/gemini-2.5-flash": 63828829822,
1074
+ "anthropic/claude-4.5-sonnet-20250929": 42692761564,
1075
+ "google/gemini-2.5-flash-lite": 27629864490,
1076
+ "google/gemini-2.5-pro": 15003477748,
1077
+ "google/gemini-3-pro-preview-20251117": 12873916879,
1078
+ "google/gemini-3-flash-preview-20251217": 12615822846,
1079
+ "google/gemini-2.0-flash-001": 9199846009,
1080
+ "anthropic/claude-4-sonnet-20250522": 7989036969,
1081
+ "anthropic/claude-4.5-opus-20251124": 5835050492,
1082
+ "Others": 22293025004
1083
+ }
1084
+ },
1085
+ {
1086
+ "x": "2025-12-19 00:00:00",
1087
+ "ys": {
1088
+ "google/gemini-2.5-flash": 57281144283,
1089
+ "anthropic/claude-4.5-sonnet-20250929": 39114590545,
1090
+ "google/gemini-2.5-flash-lite": 24700992401,
1091
+ "google/gemini-3-flash-preview-20251217": 16265425032,
1092
+ "google/gemini-2.5-pro": 13305034103,
1093
+ "google/gemini-3-pro-preview-20251117": 11124671563,
1094
+ "anthropic/claude-4.5-opus-20251124": 9534043445,
1095
+ "google/gemini-2.0-flash-001": 8282253217,
1096
+ "anthropic/claude-4-sonnet-20250522": 8220966688,
1097
+ "Others": 23906929784
1098
+ }
1099
+ },
1100
+ {
1101
+ "x": "2025-12-20 00:00:00",
1102
+ "ys": {
1103
+ "google/gemini-2.5-flash": 46858875261,
1104
+ "anthropic/claude-4.5-sonnet-20250929": 22763306580,
1105
+ "google/gemini-2.5-flash-lite": 17482399462,
1106
+ "google/gemini-3-flash-preview-20251217": 12268200709,
1107
+ "google/gemini-2.5-pro": 11833244813,
1108
+ "google/gemini-3-pro-preview-20251117": 10407874260,
1109
+ "google/gemini-2.0-flash-001": 7545687734,
1110
+ "anthropic/claude-4-sonnet-20250522": 4551282001,
1111
+ "google/gemini-2.0-flash-lite-001": 3157800919,
1112
+ "Others": 13952996182
1113
+ }
1114
+ },
1115
+ {
1116
+ "x": "2025-12-21 00:00:00",
1117
+ "ys": {
1118
+ "google/gemini-2.5-flash": 45739616988,
1119
+ "anthropic/claude-4.5-sonnet-20250929": 23601578552,
1120
+ "google/gemini-3-flash-preview-20251217": 21205284874,
1121
+ "google/gemini-2.5-flash-lite": 16938637930,
1122
+ "google/gemini-2.5-pro": 10314629196,
1123
+ "google/gemini-3-pro-preview-20251117": 7836837034,
1124
+ "google/gemini-2.0-flash-001": 6214161705,
1125
+ "anthropic/claude-4.5-opus-20251124": 5491753192,
1126
+ "anthropic/claude-4-sonnet-20250522": 4460189282,
1127
+ "Others": 14617757465
1128
+ }
1129
+ },
1130
+ {
1131
+ "x": "2025-12-22 00:00:00",
1132
+ "ys": {
1133
+ "google/gemini-2.5-flash": 52490525368,
1134
+ "anthropic/claude-4.5-sonnet-20250929": 43001453843,
1135
+ "google/gemini-3-flash-preview-20251217": 30423753955,
1136
+ "google/gemini-2.5-flash-lite": 24040451107,
1137
+ "google/gemini-2.5-pro": 14003558201,
1138
+ "google/gemini-3-pro-preview-20251117": 9669252642,
1139
+ "anthropic/claude-4-sonnet-20250522": 8584556163,
1140
+ "google/gemini-2.0-flash-001": 8401608192,
1141
+ "anthropic/claude-4.5-opus-20251124": 5174158388,
1142
+ "Others": 19941937754
1143
+ }
1144
+ },
1145
+ {
1146
+ "x": "2025-12-23 00:00:00",
1147
+ "ys": {
1148
+ "google/gemini-2.5-flash": 51647294132,
1149
+ "anthropic/claude-4.5-sonnet-20250929": 37156007545,
1150
+ "google/gemini-2.5-flash-lite": 25325512490,
1151
+ "google/gemini-3-flash-preview-20251217": 18795617088,
1152
+ "google/gemini-3-pro-preview-20251117": 13648008905,
1153
+ "google/gemini-2.5-pro": 12448713193,
1154
+ "anthropic/claude-4-sonnet-20250522": 8307798495,
1155
+ "google/gemini-2.0-flash-001": 7615402155,
1156
+ "anthropic/claude-4.5-opus-20251124": 4246002711,
1157
+ "Others": 19494296479
1158
+ }
1159
+ },
1160
+ {
1161
+ "x": "2025-12-24 00:00:00",
1162
+ "ys": {
1163
+ "google/gemini-2.5-flash": 49915352749,
1164
+ "anthropic/claude-4.5-sonnet-20250929": 34965374531,
1165
+ "google/gemini-2.5-flash-lite": 21425022070,
1166
+ "google/gemini-3-flash-preview-20251217": 17893666527,
1167
+ "google/gemini-2.5-pro": 11133570481,
1168
+ "google/gemini-3-pro-preview-20251117": 11029574380,
1169
+ "anthropic/claude-4-sonnet-20250522": 8505703096,
1170
+ "google/gemini-2.0-flash-001": 7485499280,
1171
+ "google/gemini-2.0-flash-lite-001": 3700108877,
1172
+ "Others": 18203049910
1173
+ }
1174
+ },
1175
+ {
1176
+ "x": "2025-12-25 00:00:00",
1177
+ "ys": {
1178
+ "google/gemini-2.5-flash": 53718608056,
1179
+ "anthropic/claude-4.5-sonnet-20250929": 26102320226,
1180
+ "google/gemini-3-flash-preview-20251217": 22608478502,
1181
+ "google/gemini-2.5-flash-lite": 17032347276,
1182
+ "google/gemini-3-pro-preview-20251117": 11596820281,
1183
+ "google/gemini-2.5-pro": 11125562683,
1184
+ "anthropic/claude-4-sonnet-20250522": 6030500786,
1185
+ "google/gemini-2.0-flash-001": 5769245542,
1186
+ "google/gemini-2.0-flash-lite-001": 3195136346,
1187
+ "Others": 15396287955
1188
+ }
1189
+ },
1190
+ {
1191
+ "x": "2025-12-26 00:00:00",
1192
+ "ys": {
1193
+ "google/gemini-2.5-flash": 57420753765,
1194
+ "anthropic/claude-4.5-sonnet-20250929": 29693558210,
1195
+ "google/gemini-2.5-flash-lite": 20737487206,
1196
+ "google/gemini-3-flash-preview-20251217": 16959564883,
1197
+ "google/gemini-3-pro-preview-20251117": 11519939497,
1198
+ "google/gemini-2.5-pro": 10513819169,
1199
+ "google/gemini-2.0-flash-001": 6019979076,
1200
+ "anthropic/claude-4-sonnet-20250522": 5350190870,
1201
+ "anthropic/claude-4.5-opus-20251124": 5131158116,
1202
+ "Others": 16855382607
1203
+ }
1204
+ },
1205
+ {
1206
+ "x": "2025-12-27 00:00:00",
1207
+ "ys": {
1208
+ "google/gemini-2.5-flash": 52946356642,
1209
+ "anthropic/claude-4.5-sonnet-20250929": 25224338964,
1210
+ "google/gemini-2.5-flash-lite": 17799997363,
1211
+ "google/gemini-3-flash-preview-20251217": 17225163658,
1212
+ "google/gemini-3-pro-preview-20251117": 11080498250,
1213
+ "google/gemini-2.5-pro": 9409088211,
1214
+ "google/gemini-2.0-flash-001": 5753308652,
1215
+ "anthropic/claude-4-sonnet-20250522": 4241865161,
1216
+ "anthropic/claude-4.5-opus-20251124": 3057148698,
1217
+ "Others": 14921724736
1218
+ }
1219
+ },
1220
+ {
1221
+ "x": "2025-12-28 00:00:00",
1222
+ "ys": {
1223
+ "google/gemini-2.5-flash": 48830291618,
1224
+ "anthropic/claude-4.5-sonnet-20250929": 25023516049,
1225
+ "google/gemini-2.5-flash-lite": 17845885930,
1226
+ "google/gemini-3-flash-preview-20251217": 13600001466,
1227
+ "google/gemini-3-pro-preview-20251117": 10921573220,
1228
+ "google/gemini-2.5-pro": 9366591927,
1229
+ "google/gemini-2.0-flash-001": 5857418925,
1230
+ "google/gemini-2.0-flash-lite-001": 3818046695,
1231
+ "anthropic/claude-4-sonnet-20250522": 2960844906,
1232
+ "Others": 17261966855
1233
+ }
1234
+ },
1235
+ {
1236
+ "x": "2025-12-29 00:00:00",
1237
+ "ys": {
1238
+ "google/gemini-2.5-flash": 67071979236,
1239
+ "anthropic/claude-4.5-sonnet-20250929": 32562458273,
1240
+ "google/gemini-3-flash-preview-20251217": 24051870175,
1241
+ "google/gemini-2.5-flash-lite": 21876125622,
1242
+ "google/gemini-3-pro-preview-20251117": 13501635663,
1243
+ "google/gemini-2.5-pro": 12082692080,
1244
+ "google/gemini-2.0-flash-001": 7277303189,
1245
+ "anthropic/claude-4-sonnet-20250522": 5845121459,
1246
+ "anthropic/claude-4.5-opus-20251124": 4449742897,
1247
+ "Others": 20541327851
1248
+ }
1249
+ },
1250
+ {
1251
+ "x": "2025-12-30 00:00:00",
1252
+ "ys": {
1253
+ "google/gemini-2.5-flash": 54084874708,
1254
+ "anthropic/claude-4.5-sonnet-20250929": 33701741040,
1255
+ "google/gemini-2.5-flash-lite": 22831055084,
1256
+ "google/gemini-3-flash-preview-20251217": 22292575137,
1257
+ "google/gemini-3-pro-preview-20251117": 12426906946,
1258
+ "google/gemini-2.5-pro": 11030414452,
1259
+ "google/gemini-2.0-flash-001": 7017846685,
1260
+ "anthropic/claude-4-sonnet-20250522": 5662224063,
1261
+ "anthropic/claude-4.5-opus-20251124": 4284258373,
1262
+ "Others": 21083097417
1263
+ }
1264
+ },
1265
+ {
1266
+ "x": "2025-12-31 00:00:00",
1267
+ "ys": {
1268
+ "google/gemini-2.5-flash": 44189320481,
1269
+ "anthropic/claude-4.5-sonnet-20250929": 32304273773,
1270
+ "google/gemini-2.5-flash-lite": 24296969951,
1271
+ "google/gemini-3-flash-preview-20251217": 19734364322,
1272
+ "google/gemini-3-pro-preview-20251117": 11345036589,
1273
+ "google/gemini-2.5-pro": 10193937145,
1274
+ "google/gemini-2.0-flash-001": 6344608163,
1275
+ "anthropic/claude-4-sonnet-20250522": 4659886850,
1276
+ "anthropic/claude-4.5-opus-20251124": 4183325321,
1277
+ "Others": 16352216613
1278
+ }
1279
+ },
1280
+ {
1281
+ "x": "2026-01-01 00:00:00",
1282
+ "ys": {
1283
+ "google/gemini-2.5-flash": 40587310634,
1284
+ "anthropic/claude-4.5-sonnet-20250929": 30500893788,
1285
+ "google/gemini-2.5-flash-lite": 21804601986,
1286
+ "google/gemini-3-flash-preview-20251217": 17312025312,
1287
+ "google/gemini-3-pro-preview-20251117": 10214014557,
1288
+ "google/gemini-2.5-pro": 8477764653,
1289
+ "google/gemini-2.0-flash-001": 5820588967,
1290
+ "anthropic/claude-4-sonnet-20250522": 3057752839,
1291
+ "google/gemini-2.0-flash-lite-001": 2094449788,
1292
+ "Others": 14548719989
1293
+ }
1294
+ },
1295
+ {
1296
+ "x": "2026-01-02 00:00:00",
1297
+ "ys": {
1298
+ "google/gemini-2.5-flash": 43612444384,
1299
+ "anthropic/claude-4.5-sonnet-20250929": 32969399302,
1300
+ "google/gemini-3-flash-preview-20251217": 22634082441,
1301
+ "google/gemini-2.5-flash-lite": 22321337122,
1302
+ "google/gemini-3-pro-preview-20251117": 11744771792,
1303
+ "google/gemini-2.5-pro": 10198207812,
1304
+ "google/gemini-2.0-flash-001": 7487882087,
1305
+ "anthropic/claude-4-sonnet-20250522": 4658501775,
1306
+ "google/gemini-2.0-flash-lite-001": 2692615185,
1307
+ "Others": 16608692390
1308
+ }
1309
+ },
1310
+ {
1311
+ "x": "2026-01-03 00:00:00",
1312
+ "ys": {
1313
+ "google/gemini-2.5-flash": 40261684683,
1314
+ "anthropic/claude-4.5-sonnet-20250929": 29525124625,
1315
+ "google/gemini-2.5-flash-lite": 21314595725,
1316
+ "google/gemini-3-flash-preview-20251217": 19707629637,
1317
+ "google/gemini-3-pro-preview-20251117": 12125497830,
1318
+ "google/gemini-2.5-pro": 9110282067,
1319
+ "google/gemini-2.0-flash-001": 6526818094,
1320
+ "anthropic/claude-4.5-opus-20251124": 5368671645,
1321
+ "anthropic/claude-4-sonnet-20250522": 4564153965,
1322
+ "Others": 18983326843
1323
+ }
1324
+ },
1325
+ {
1326
+ "x": "2026-01-04 00:00:00",
1327
+ "ys": {
1328
+ "google/gemini-2.5-flash": 43452016443,
1329
+ "anthropic/claude-4.5-sonnet-20250929": 31545639832,
1330
+ "google/gemini-3-flash-preview-20251217": 24980469752,
1331
+ "google/gemini-2.5-flash-lite": 20821839050,
1332
+ "google/gemini-3-pro-preview-20251117": 14993912634,
1333
+ "google/gemini-2.5-pro": 10248847934,
1334
+ "google/gemini-2.0-flash-001": 6552628403,
1335
+ "anthropic/claude-4-sonnet-20250522": 5047724769,
1336
+ "anthropic/claude-4.5-opus-20251124": 4524670056,
1337
+ "Others": 18447954475
1338
+ }
1339
+ },
1340
+ {
1341
+ "x": "2026-01-05 00:00:00",
1342
+ "ys": {
1343
+ "google/gemini-2.5-flash": 54279558499,
1344
+ "anthropic/claude-4.5-sonnet-20250929": 43532676319,
1345
+ "google/gemini-3-flash-preview-20251217": 33256433109,
1346
+ "google/gemini-2.5-flash-lite": 28965623587,
1347
+ "google/gemini-3-pro-preview-20251117": 13947865754,
1348
+ "google/gemini-2.5-pro": 12087290746,
1349
+ "google/gemini-2.0-flash-001": 7922747476,
1350
+ "anthropic/claude-4.5-opus-20251124": 7870664216,
1351
+ "anthropic/claude-4-sonnet-20250522": 6655577849,
1352
+ "Others": 20535156618
1353
+ }
1354
+ }
1355
+ ],
1356
+ "fetched_at": "2026-01-06T00:09:40.844946",
1357
+ "success": true
1358
+ }
data/providers/groq.json ADDED
@@ -0,0 +1,1346 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "provider": "groq",
3
+ "url": "https://openrouter.ai/provider/groq",
4
+ "data": [
5
+ {
6
+ "x": "2025-10-08 00:00:00",
7
+ "ys": {
8
+ "openai/gpt-oss-120b": 1378845659,
9
+ "openai/gpt-oss-20b": 775570208,
10
+ "moonshotai/kimi-k2-0905": 621920592,
11
+ "meta-llama/llama-4-scout-17b-16e-instruct": 470645471,
12
+ "meta-llama/llama-3.3-70b-instruct": 234628016,
13
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 228047980,
14
+ "qwen/qwen3-32b-04-28": 171965745,
15
+ "moonshotai/kimi-k2": 139875137,
16
+ "meta-llama/llama-guard-4-12b": 34581953,
17
+ "Others": 57274092
18
+ }
19
+ },
20
+ {
21
+ "x": "2025-10-09 00:00:00",
22
+ "ys": {
23
+ "openai/gpt-oss-120b": 1077173734,
24
+ "openai/gpt-oss-20b": 961407320,
25
+ "meta-llama/llama-3.3-70b-instruct": 232910820,
26
+ "meta-llama/llama-4-scout-17b-16e-instruct": 228037154,
27
+ "moonshotai/kimi-k2-0905": 214215569,
28
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 167205296,
29
+ "qwen/qwen3-32b-04-28": 166302377,
30
+ "moonshotai/kimi-k2": 41714765,
31
+ "meta-llama/llama-guard-4-12b": 34755124,
32
+ "Others": 38295736
33
+ }
34
+ },
35
+ {
36
+ "x": "2025-10-10 00:00:00",
37
+ "ys": {
38
+ "openai/gpt-oss-120b": 1068996409,
39
+ "moonshotai/kimi-k2-0905": 847899459,
40
+ "openai/gpt-oss-20b": 780338979,
41
+ "meta-llama/llama-4-scout-17b-16e-instruct": 350091486,
42
+ "meta-llama/llama-3.3-70b-instruct": 227827983,
43
+ "qwen/qwen3-32b-04-28": 151480394,
44
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 126353496,
45
+ "meta-llama/llama-guard-4-12b": 31719075,
46
+ "meta-llama/llama-3.1-8b-instruct": 29001908
47
+ }
48
+ },
49
+ {
50
+ "x": "2025-10-11 00:00:00",
51
+ "ys": {
52
+ "openai/gpt-oss-20b": 849299731,
53
+ "moonshotai/kimi-k2-0905": 535905134,
54
+ "openai/gpt-oss-120b": 535624750,
55
+ "meta-llama/llama-4-scout-17b-16e-instruct": 365898217,
56
+ "meta-llama/llama-3.3-70b-instruct": 257691282,
57
+ "qwen/qwen3-32b-04-28": 144471582,
58
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 143801552,
59
+ "meta-llama/llama-guard-4-12b": 31407851,
60
+ "meta-llama/llama-3.1-8b-instruct": 23143807
61
+ }
62
+ },
63
+ {
64
+ "x": "2025-10-12 00:00:00",
65
+ "ys": {
66
+ "openai/gpt-oss-20b": 757677893,
67
+ "moonshotai/kimi-k2-0905": 571143223,
68
+ "openai/gpt-oss-120b": 532304825,
69
+ "meta-llama/llama-4-scout-17b-16e-instruct": 359169316,
70
+ "meta-llama/llama-3.3-70b-instruct": 237103866,
71
+ "qwen/qwen3-32b-04-28": 156823746,
72
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 147094084,
73
+ "meta-llama/llama-guard-4-12b": 33006062,
74
+ "meta-llama/llama-3.1-8b-instruct": 23964385
75
+ }
76
+ },
77
+ {
78
+ "x": "2025-10-13 00:00:00",
79
+ "ys": {
80
+ "openai/gpt-oss-20b": 1801287012,
81
+ "moonshotai/kimi-k2-0905": 699719540,
82
+ "openai/gpt-oss-120b": 596706003,
83
+ "meta-llama/llama-4-scout-17b-16e-instruct": 369756226,
84
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 259257473,
85
+ "meta-llama/llama-3.3-70b-instruct": 241775889,
86
+ "qwen/qwen3-32b-04-28": 174088875,
87
+ "meta-llama/llama-3.1-8b-instruct": 36452382,
88
+ "meta-llama/llama-guard-4-12b": 35346283
89
+ }
90
+ },
91
+ {
92
+ "x": "2025-10-14 00:00:00",
93
+ "ys": {
94
+ "openai/gpt-oss-20b": 965815243,
95
+ "openai/gpt-oss-120b": 600942526,
96
+ "moonshotai/kimi-k2-0905": 406901660,
97
+ "meta-llama/llama-4-scout-17b-16e-instruct": 341548205,
98
+ "meta-llama/llama-3.3-70b-instruct": 220588176,
99
+ "qwen/qwen3-32b-04-28": 177219784,
100
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 167971765,
101
+ "meta-llama/llama-3.1-8b-instruct": 48260900,
102
+ "meta-llama/llama-guard-4-12b": 34120535
103
+ }
104
+ },
105
+ {
106
+ "x": "2025-10-15 00:00:00",
107
+ "ys": {
108
+ "openai/gpt-oss-20b": 1655040228,
109
+ "moonshotai/kimi-k2-0905": 718623035,
110
+ "openai/gpt-oss-120b": 592094358,
111
+ "meta-llama/llama-4-scout-17b-16e-instruct": 532148308,
112
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 242811829,
113
+ "meta-llama/llama-3.3-70b-instruct": 223030605,
114
+ "qwen/qwen3-32b-04-28": 183299954,
115
+ "meta-llama/llama-3.1-8b-instruct": 58479869,
116
+ "meta-llama/llama-guard-4-12b": 34853397
117
+ }
118
+ },
119
+ {
120
+ "x": "2025-10-16 00:00:00",
121
+ "ys": {
122
+ "openai/gpt-oss-20b": 1622586182,
123
+ "meta-llama/llama-4-scout-17b-16e-instruct": 700535421,
124
+ "moonshotai/kimi-k2-0905": 458475318,
125
+ "openai/gpt-oss-120b": 388437215,
126
+ "meta-llama/llama-3.3-70b-instruct": 266058325,
127
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 182448790,
128
+ "qwen/qwen3-32b-04-28": 161910122,
129
+ "meta-llama/llama-guard-4-12b": 35252934,
130
+ "meta-llama/llama-3.1-8b-instruct": 31079884
131
+ }
132
+ },
133
+ {
134
+ "x": "2025-10-17 00:00:00",
135
+ "ys": {
136
+ "openai/gpt-oss-20b": 873304520,
137
+ "meta-llama/llama-4-scout-17b-16e-instruct": 600554866,
138
+ "moonshotai/kimi-k2-0905": 572561706,
139
+ "openai/gpt-oss-120b": 378692387,
140
+ "meta-llama/llama-3.3-70b-instruct": 285106993,
141
+ "qwen/qwen3-32b-04-28": 163072362,
142
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 134999988,
143
+ "meta-llama/llama-3.1-8b-instruct": 49754854,
144
+ "meta-llama/llama-guard-4-12b": 38008930
145
+ }
146
+ },
147
+ {
148
+ "x": "2025-10-18 00:00:00",
149
+ "ys": {
150
+ "openai/gpt-oss-20b": 1924215285,
151
+ "moonshotai/kimi-k2-0905": 599309701,
152
+ "meta-llama/llama-4-scout-17b-16e-instruct": 572787374,
153
+ "openai/gpt-oss-120b": 422089602,
154
+ "meta-llama/llama-3.3-70b-instruct": 304846331,
155
+ "meta-llama/llama-3.1-8b-instruct": 296590597,
156
+ "qwen/qwen3-32b-04-28": 145551876,
157
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 119835320,
158
+ "meta-llama/llama-guard-4-12b": 38813251
159
+ }
160
+ },
161
+ {
162
+ "x": "2025-10-19 00:00:00",
163
+ "ys": {
164
+ "openai/gpt-oss-20b": 2543443294,
165
+ "meta-llama/llama-4-scout-17b-16e-instruct": 682304312,
166
+ "moonshotai/kimi-k2-0905": 562178116,
167
+ "openai/gpt-oss-120b": 486165894,
168
+ "meta-llama/llama-3.3-70b-instruct": 289966229,
169
+ "qwen/qwen3-32b-04-28": 179863047,
170
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 157438802,
171
+ "meta-llama/llama-guard-4-12b": 41513003,
172
+ "meta-llama/llama-3.1-8b-instruct": 22828034
173
+ }
174
+ },
175
+ {
176
+ "x": "2025-10-20 00:00:00",
177
+ "ys": {
178
+ "openai/gpt-oss-20b": 1372383012,
179
+ "moonshotai/kimi-k2-0905": 709621090,
180
+ "meta-llama/llama-4-scout-17b-16e-instruct": 692891533,
181
+ "meta-llama/llama-3.3-70b-instruct": 402921892,
182
+ "openai/gpt-oss-120b": 332356346,
183
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 250030374,
184
+ "qwen/qwen3-32b-04-28": 164645329,
185
+ "meta-llama/llama-guard-4-12b": 41490519,
186
+ "meta-llama/llama-3.1-8b-instruct": 25314168
187
+ }
188
+ },
189
+ {
190
+ "x": "2025-10-21 00:00:00",
191
+ "ys": {
192
+ "openai/gpt-oss-20b": 1937295790,
193
+ "meta-llama/llama-4-scout-17b-16e-instruct": 726612229,
194
+ "moonshotai/kimi-k2-0905": 618869070,
195
+ "meta-llama/llama-3.3-70b-instruct": 487585312,
196
+ "openai/gpt-oss-120b": 343759322,
197
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 287308867,
198
+ "qwen/qwen3-32b-04-28": 281381460,
199
+ "meta-llama/llama-guard-4-12b": 42641518,
200
+ "meta-llama/llama-3.1-8b-instruct": 27615485
201
+ }
202
+ },
203
+ {
204
+ "x": "2025-10-22 00:00:00",
205
+ "ys": {
206
+ "openai/gpt-oss-20b": 2770881642,
207
+ "openai/gpt-oss-120b": 1234823861,
208
+ "meta-llama/llama-4-scout-17b-16e-instruct": 717761551,
209
+ "moonshotai/kimi-k2-0905": 408795567,
210
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 360572651,
211
+ "meta-llama/llama-3.3-70b-instruct": 345133037,
212
+ "qwen/qwen3-32b-04-28": 171550075,
213
+ "meta-llama/llama-guard-4-12b": 45458732,
214
+ "meta-llama/llama-3.1-8b-instruct": 40669891,
215
+ "Others": 6386483
216
+ }
217
+ },
218
+ {
219
+ "x": "2025-10-23 00:00:00",
220
+ "ys": {
221
+ "openai/gpt-oss-20b": 3578352942,
222
+ "openai/gpt-oss-120b": 2850497303,
223
+ "meta-llama/llama-4-scout-17b-16e-instruct": 660277225,
224
+ "meta-llama/llama-3.3-70b-instruct": 439701652,
225
+ "moonshotai/kimi-k2-0905": 353590681,
226
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 285098566,
227
+ "qwen/qwen3-32b-04-28": 277595966,
228
+ "meta-llama/llama-guard-4-12b": 45901080,
229
+ "meta-llama/llama-3.1-8b-instruct": 33834234,
230
+ "Others": 33517806
231
+ }
232
+ },
233
+ {
234
+ "x": "2025-10-24 00:00:00",
235
+ "ys": {
236
+ "openai/gpt-oss-120b": 2318459934,
237
+ "openai/gpt-oss-20b": 2154393053,
238
+ "meta-llama/llama-3.1-8b-instruct": 1011998462,
239
+ "meta-llama/llama-4-scout-17b-16e-instruct": 462608032,
240
+ "moonshotai/kimi-k2-0905": 339527254,
241
+ "meta-llama/llama-3.3-70b-instruct": 332357933,
242
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 237092786,
243
+ "qwen/qwen3-32b-04-28": 183071154,
244
+ "moonshotai/kimi-k2-0905:exacto": 147653838,
245
+ "Others": 72249781
246
+ }
247
+ },
248
+ {
249
+ "x": "2025-10-25 00:00:00",
250
+ "ys": {
251
+ "openai/gpt-oss-120b": 2947152596,
252
+ "openai/gpt-oss-20b": 965254708,
253
+ "meta-llama/llama-4-scout-17b-16e-instruct": 376205936,
254
+ "meta-llama/llama-3.3-70b-instruct": 313575331,
255
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 236808399,
256
+ "moonshotai/kimi-k2-0905": 155898055,
257
+ "qwen/qwen3-32b-04-28": 147854351,
258
+ "meta-llama/llama-3.1-8b-instruct": 104849333,
259
+ "moonshotai/kimi-k2-0905:exacto": 101744670,
260
+ "Others": 55063731
261
+ }
262
+ },
263
+ {
264
+ "x": "2025-10-26 00:00:00",
265
+ "ys": {
266
+ "openai/gpt-oss-120b": 3573241453,
267
+ "openai/gpt-oss-20b": 2510469308,
268
+ "meta-llama/llama-4-scout-17b-16e-instruct": 425920813,
269
+ "meta-llama/llama-3.3-70b-instruct": 314775725,
270
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 307696581,
271
+ "qwen/qwen3-32b-04-28": 181824599,
272
+ "moonshotai/kimi-k2-0905:exacto": 123167843,
273
+ "meta-llama/llama-3.1-8b-instruct": 101492515,
274
+ "moonshotai/kimi-k2-0905": 71088067,
275
+ "Others": 58514702
276
+ }
277
+ },
278
+ {
279
+ "x": "2025-10-27 00:00:00",
280
+ "ys": {
281
+ "openai/gpt-oss-120b": 3494160293,
282
+ "meta-llama/llama-3.1-8b-instruct": 1999412436,
283
+ "openai/gpt-oss-20b": 1961032501,
284
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 432452555,
285
+ "meta-llama/llama-4-scout-17b-16e-instruct": 415151398,
286
+ "meta-llama/llama-3.3-70b-instruct": 326021783,
287
+ "qwen/qwen3-32b-04-28": 176508773,
288
+ "moonshotai/kimi-k2-0905": 150909925,
289
+ "moonshotai/kimi-k2-0905:exacto": 67575081,
290
+ "Others": 59508437
291
+ }
292
+ },
293
+ {
294
+ "x": "2025-10-28 00:00:00",
295
+ "ys": {
296
+ "openai/gpt-oss-120b": 3365243747,
297
+ "openai/gpt-oss-20b": 1392737023,
298
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 452110636,
299
+ "meta-llama/llama-4-scout-17b-16e-instruct": 434707635,
300
+ "meta-llama/llama-3.3-70b-instruct": 288897339,
301
+ "moonshotai/kimi-k2-0905": 225290483,
302
+ "qwen/qwen3-32b-04-28": 175743527,
303
+ "meta-llama/llama-3.1-8b-instruct": 157493497,
304
+ "moonshotai/kimi-k2-0905:exacto": 121769847,
305
+ "Others": 71287633
306
+ }
307
+ },
308
+ {
309
+ "x": "2025-10-29 00:00:00",
310
+ "ys": {
311
+ "openai/gpt-oss-20b": 7394630035,
312
+ "openai/gpt-oss-120b": 4809417977,
313
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 401223868,
314
+ "meta-llama/llama-4-scout-17b-16e-instruct": 381494759,
315
+ "moonshotai/kimi-k2-0905": 347301099,
316
+ "meta-llama/llama-3.3-70b-instruct": 285695254,
317
+ "qwen/qwen3-32b-04-28": 145964772,
318
+ "moonshotai/kimi-k2-0905:exacto": 91693372,
319
+ "meta-llama/llama-3.1-8b-instruct": 85550614,
320
+ "Others": 79401176
321
+ }
322
+ },
323
+ {
324
+ "x": "2025-10-30 00:00:00",
325
+ "ys": {
326
+ "openai/gpt-oss-20b": 4910948757,
327
+ "openai/gpt-oss-120b": 2903038135,
328
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 471608908,
329
+ "meta-llama/llama-4-scout-17b-16e-instruct": 368764138,
330
+ "moonshotai/kimi-k2-0905": 305561232,
331
+ "meta-llama/llama-3.3-70b-instruct": 301446584,
332
+ "qwen/qwen3-32b-04-28": 124324098,
333
+ "openai/gpt-oss-safeguard-20b": 117521208,
334
+ "meta-llama/llama-3.1-8b-instruct": 107283444,
335
+ "Others": 192790477
336
+ }
337
+ },
338
+ {
339
+ "x": "2025-10-31 00:00:00",
340
+ "ys": {
341
+ "openai/gpt-oss-120b": 2286915578,
342
+ "openai/gpt-oss-20b": 1630337621,
343
+ "meta-llama/llama-4-scout-17b-16e-instruct": 387999623,
344
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 273185292,
345
+ "meta-llama/llama-3.3-70b-instruct": 264803813,
346
+ "openai/gpt-oss-safeguard-20b": 158202084,
347
+ "moonshotai/kimi-k2-0905": 143317569,
348
+ "qwen/qwen3-32b-04-28": 108834669,
349
+ "meta-llama/llama-3.1-8b-instruct": 97006226,
350
+ "Others": 173762728
351
+ }
352
+ },
353
+ {
354
+ "x": "2025-11-01 00:00:00",
355
+ "ys": {
356
+ "openai/gpt-oss-120b": 2173092218,
357
+ "openai/gpt-oss-20b": 1559411156,
358
+ "meta-llama/llama-4-scout-17b-16e-instruct": 403164329,
359
+ "meta-llama/llama-3.3-70b-instruct": 287796234,
360
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 250634659,
361
+ "meta-llama/llama-3.1-8b-instruct": 125781470,
362
+ "qwen/qwen3-32b-04-28": 102648133,
363
+ "openai/gpt-oss-safeguard-20b": 77770769,
364
+ "moonshotai/kimi-k2-0905": 71829411,
365
+ "Others": 80687580
366
+ }
367
+ },
368
+ {
369
+ "x": "2025-11-02 00:00:00",
370
+ "ys": {
371
+ "openai/gpt-oss-120b": 2381541958,
372
+ "openai/gpt-oss-20b": 691788605,
373
+ "meta-llama/llama-4-scout-17b-16e-instruct": 425692125,
374
+ "meta-llama/llama-3.3-70b-instruct": 316032524,
375
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 273487950,
376
+ "meta-llama/llama-3.1-8b-instruct": 163876990,
377
+ "qwen/qwen3-32b-04-28": 123545425,
378
+ "moonshotai/kimi-k2-0905": 104554373,
379
+ "openai/gpt-oss-120b:exacto": 100742729,
380
+ "Others": 154923061
381
+ }
382
+ },
383
+ {
384
+ "x": "2025-11-03 00:00:00",
385
+ "ys": {
386
+ "openai/gpt-oss-120b": 3495062883,
387
+ "openai/gpt-oss-20b": 995434990,
388
+ "meta-llama/llama-4-scout-17b-16e-instruct": 523443165,
389
+ "meta-llama/llama-3.3-70b-instruct": 328969900,
390
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 236971004,
391
+ "meta-llama/llama-3.1-8b-instruct": 168581002,
392
+ "qwen/qwen3-32b-04-28": 166646857,
393
+ "moonshotai/kimi-k2-0905": 143568295,
394
+ "openai/gpt-oss-safeguard-20b": 72696815,
395
+ "Others": 112767337
396
+ }
397
+ },
398
+ {
399
+ "x": "2025-11-04 00:00:00",
400
+ "ys": {
401
+ "openai/gpt-oss-120b": 2679448762,
402
+ "openai/gpt-oss-20b": 964991932,
403
+ "meta-llama/llama-4-scout-17b-16e-instruct": 532028022,
404
+ "meta-llama/llama-3.3-70b-instruct": 305128488,
405
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 174002610,
406
+ "moonshotai/kimi-k2-0905": 170188340,
407
+ "qwen/qwen3-32b-04-28": 134313087,
408
+ "meta-llama/llama-3.1-8b-instruct": 120679483,
409
+ "moonshotai/kimi-k2-0905:exacto": 82278954,
410
+ "Others": 132738105
411
+ }
412
+ },
413
+ {
414
+ "x": "2025-11-05 00:00:00",
415
+ "ys": {
416
+ "openai/gpt-oss-120b": 2242120632,
417
+ "openai/gpt-oss-20b": 1356300480,
418
+ "meta-llama/llama-4-scout-17b-16e-instruct": 527852231,
419
+ "moonshotai/kimi-k2-0905": 415912061,
420
+ "meta-llama/llama-3.3-70b-instruct": 299827528,
421
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 216519116,
422
+ "qwen/qwen3-32b-04-28": 182024761,
423
+ "meta-llama/llama-3.1-8b-instruct": 154003869,
424
+ "openai/gpt-oss-safeguard-20b": 95780496,
425
+ "Others": 139409779
426
+ }
427
+ },
428
+ {
429
+ "x": "2025-11-06 00:00:00",
430
+ "ys": {
431
+ "openai/gpt-oss-120b": 2411258649,
432
+ "openai/gpt-oss-20b": 1489405984,
433
+ "meta-llama/llama-4-scout-17b-16e-instruct": 656322797,
434
+ "moonshotai/kimi-k2-0905": 508622925,
435
+ "meta-llama/llama-3.1-8b-instruct": 422919363,
436
+ "meta-llama/llama-3.3-70b-instruct": 339424125,
437
+ "openai/gpt-oss-safeguard-20b": 129902235,
438
+ "qwen/qwen3-32b-04-28": 112555986,
439
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 83124209,
440
+ "Others": 142372116
441
+ }
442
+ },
443
+ {
444
+ "x": "2025-11-07 00:00:00",
445
+ "ys": {
446
+ "openai/gpt-oss-120b": 2589134111,
447
+ "openai/gpt-oss-20b": 1690802864,
448
+ "meta-llama/llama-3.1-8b-instruct": 1110335734,
449
+ "meta-llama/llama-3.3-70b-instruct": 530848492,
450
+ "meta-llama/llama-4-scout-17b-16e-instruct": 431155465,
451
+ "moonshotai/kimi-k2-0905": 276951418,
452
+ "qwen/qwen3-32b-04-28": 179678426,
453
+ "openai/gpt-oss-safeguard-20b": 142962396,
454
+ "moonshotai/kimi-k2-0905:exacto": 75711753,
455
+ "Others": 101507153
456
+ }
457
+ },
458
+ {
459
+ "x": "2025-11-08 00:00:00",
460
+ "ys": {
461
+ "openai/gpt-oss-20b": 5311675575,
462
+ "openai/gpt-oss-120b": 2455316099,
463
+ "meta-llama/llama-3.1-8b-instruct": 1286051689,
464
+ "meta-llama/llama-3.3-70b-instruct": 694080933,
465
+ "meta-llama/llama-4-scout-17b-16e-instruct": 343403994,
466
+ "moonshotai/kimi-k2-0905": 183981716,
467
+ "openai/gpt-oss-safeguard-20b": 150240664,
468
+ "qwen/qwen3-32b-04-28": 96539028,
469
+ "moonshotai/kimi-k2-0905:exacto": 61458012,
470
+ "Others": 105202180
471
+ }
472
+ },
473
+ {
474
+ "x": "2025-11-09 00:00:00",
475
+ "ys": {
476
+ "openai/gpt-oss-20b": 3147496686,
477
+ "openai/gpt-oss-120b": 1769855842,
478
+ "meta-llama/llama-3.1-8b-instruct": 1203837191,
479
+ "meta-llama/llama-3.3-70b-instruct": 846813482,
480
+ "meta-llama/llama-4-scout-17b-16e-instruct": 428880665,
481
+ "moonshotai/kimi-k2-0905": 342734957,
482
+ "openai/gpt-oss-safeguard-20b": 180578782,
483
+ "qwen/qwen3-32b-04-28": 87765930,
484
+ "meta-llama/llama-guard-4-12b": 67506125,
485
+ "Others": 77776691
486
+ }
487
+ },
488
+ {
489
+ "x": "2025-11-10 00:00:00",
490
+ "ys": {
491
+ "openai/gpt-oss-20b": 2936885220,
492
+ "openai/gpt-oss-120b": 2653616367,
493
+ "meta-llama/llama-3.1-8b-instruct": 798987058,
494
+ "meta-llama/llama-3.3-70b-instruct": 693892977,
495
+ "meta-llama/llama-4-scout-17b-16e-instruct": 435511060,
496
+ "moonshotai/kimi-k2-0905": 196143676,
497
+ "openai/gpt-oss-safeguard-20b": 159527686,
498
+ "qwen/qwen3-32b-04-28": 126958176,
499
+ "moonshotai/kimi-k2-0905:exacto": 120291979,
500
+ "Others": 99652366
501
+ }
502
+ },
503
+ {
504
+ "x": "2025-11-11 00:00:00",
505
+ "ys": {
506
+ "openai/gpt-oss-120b": 2737272071,
507
+ "openai/gpt-oss-20b": 1946539676,
508
+ "meta-llama/llama-3.1-8b-instruct": 943063057,
509
+ "meta-llama/llama-3.3-70b-instruct": 940949236,
510
+ "meta-llama/llama-4-scout-17b-16e-instruct": 306595344,
511
+ "moonshotai/kimi-k2-0905": 270788587,
512
+ "openai/gpt-oss-safeguard-20b": 168372707,
513
+ "moonshotai/kimi-k2-0905:exacto": 165566991,
514
+ "qwen/qwen3-32b-04-28": 135503336,
515
+ "Others": 122527358
516
+ }
517
+ },
518
+ {
519
+ "x": "2025-11-12 00:00:00",
520
+ "ys": {
521
+ "openai/gpt-oss-120b": 2668335015,
522
+ "openai/gpt-oss-20b": 1795132326,
523
+ "meta-llama/llama-3.1-8b-instruct": 823396967,
524
+ "meta-llama/llama-3.3-70b-instruct": 698579687,
525
+ "meta-llama/llama-4-scout-17b-16e-instruct": 373786786,
526
+ "moonshotai/kimi-k2-0905": 231525807,
527
+ "openai/gpt-oss-safeguard-20b": 211568215,
528
+ "qwen/qwen3-32b-04-28": 128830484,
529
+ "moonshotai/kimi-k2-0905:exacto": 85740915,
530
+ "Others": 108607804
531
+ }
532
+ },
533
+ {
534
+ "x": "2025-11-13 00:00:00",
535
+ "ys": {
536
+ "openai/gpt-oss-120b": 3369953526,
537
+ "openai/gpt-oss-20b": 2294022080,
538
+ "meta-llama/llama-3.1-8b-instruct": 991122489,
539
+ "meta-llama/llama-3.3-70b-instruct": 671049846,
540
+ "meta-llama/llama-4-scout-17b-16e-instruct": 512189359,
541
+ "moonshotai/kimi-k2-0905": 331960461,
542
+ "openai/gpt-oss-safeguard-20b": 185826146,
543
+ "qwen/qwen3-32b-04-28": 152910255,
544
+ "moonshotai/kimi-k2-0905:exacto": 74640182,
545
+ "Others": 130784882
546
+ }
547
+ },
548
+ {
549
+ "x": "2025-11-14 00:00:00",
550
+ "ys": {
551
+ "openai/gpt-oss-120b": 3043859947,
552
+ "openai/gpt-oss-20b": 2190300885,
553
+ "openai/gpt-oss-safeguard-20b": 515847045,
554
+ "meta-llama/llama-3.3-70b-instruct": 515006843,
555
+ "meta-llama/llama-4-scout-17b-16e-instruct": 511332328,
556
+ "meta-llama/llama-3.1-8b-instruct": 510925750,
557
+ "moonshotai/kimi-k2-0905": 223379691,
558
+ "qwen/qwen3-32b-04-28": 154397264,
559
+ "openai/gpt-oss-120b:exacto": 85789118,
560
+ "Others": 143994402
561
+ }
562
+ },
563
+ {
564
+ "x": "2025-11-15 00:00:00",
565
+ "ys": {
566
+ "openai/gpt-oss-safeguard-20b": 2548302875,
567
+ "openai/gpt-oss-20b": 2040262352,
568
+ "openai/gpt-oss-120b": 1634848888,
569
+ "meta-llama/llama-4-scout-17b-16e-instruct": 510486888,
570
+ "meta-llama/llama-3.3-70b-instruct": 289056173,
571
+ "meta-llama/llama-3.1-8b-instruct": 153560170,
572
+ "moonshotai/kimi-k2-0905:exacto": 151870411,
573
+ "qwen/qwen3-32b-04-28": 124367267,
574
+ "moonshotai/kimi-k2-0905": 109275732,
575
+ "Others": 137022166
576
+ }
577
+ },
578
+ {
579
+ "x": "2025-11-16 00:00:00",
580
+ "ys": {
581
+ "openai/gpt-oss-safeguard-20b": 2589472812,
582
+ "openai/gpt-oss-120b": 1378823858,
583
+ "openai/gpt-oss-20b": 1244334883,
584
+ "meta-llama/llama-4-scout-17b-16e-instruct": 437910327,
585
+ "meta-llama/llama-3.3-70b-instruct": 261283918,
586
+ "moonshotai/kimi-k2-0905": 164505308,
587
+ "meta-llama/llama-3.1-8b-instruct": 145393751,
588
+ "qwen/qwen3-32b-04-28": 107095635,
589
+ "moonshotai/kimi-k2-0905:exacto": 67869718,
590
+ "Others": 98836247
591
+ }
592
+ },
593
+ {
594
+ "x": "2025-11-17 00:00:00",
595
+ "ys": {
596
+ "openai/gpt-oss-120b": 3264687925,
597
+ "openai/gpt-oss-20b": 2003869889,
598
+ "openai/gpt-oss-safeguard-20b": 1943068005,
599
+ "meta-llama/llama-4-scout-17b-16e-instruct": 670112048,
600
+ "moonshotai/kimi-k2-0905": 239858686,
601
+ "meta-llama/llama-3.3-70b-instruct": 220613066,
602
+ "meta-llama/llama-3.1-8b-instruct": 193383546,
603
+ "qwen/qwen3-32b-04-28": 188656085,
604
+ "meta-llama/llama-guard-4-12b": 68109323,
605
+ "Others": 65526796
606
+ }
607
+ },
608
+ {
609
+ "x": "2025-11-18 00:00:00",
610
+ "ys": {
611
+ "openai/gpt-oss-120b": 3978163081,
612
+ "openai/gpt-oss-20b": 1569722790,
613
+ "openai/gpt-oss-safeguard-20b": 1268062476,
614
+ "meta-llama/llama-4-scout-17b-16e-instruct": 500342531,
615
+ "meta-llama/llama-3.3-70b-instruct": 265210924,
616
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 211535491,
617
+ "qwen/qwen3-32b-04-28": 189014922,
618
+ "moonshotai/kimi-k2-0905": 183845701,
619
+ "meta-llama/llama-3.1-8b-instruct": 155688404,
620
+ "Others": 195184564
621
+ }
622
+ },
623
+ {
624
+ "x": "2025-11-19 00:00:00",
625
+ "ys": {
626
+ "openai/gpt-oss-120b": 2464408707,
627
+ "openai/gpt-oss-20b": 1499041535,
628
+ "meta-llama/llama-4-scout-17b-16e-instruct": 536716098,
629
+ "moonshotai/kimi-k2-0905": 421794384,
630
+ "meta-llama/llama-3.3-70b-instruct": 275994569,
631
+ "openai/gpt-oss-safeguard-20b": 215999274,
632
+ "meta-llama/llama-3.1-8b-instruct": 161293323,
633
+ "qwen/qwen3-32b-04-28": 153494235,
634
+ "openai/gpt-oss-120b:exacto": 79758108,
635
+ "Others": 174210870
636
+ }
637
+ },
638
+ {
639
+ "x": "2025-11-20 00:00:00",
640
+ "ys": {
641
+ "openai/gpt-oss-120b": 2081420197,
642
+ "openai/gpt-oss-20b": 1619136929,
643
+ "meta-llama/llama-4-scout-17b-16e-instruct": 592939951,
644
+ "moonshotai/kimi-k2-0905": 388521842,
645
+ "meta-llama/llama-3.1-8b-instruct": 282774351,
646
+ "meta-llama/llama-3.3-70b-instruct": 263140926,
647
+ "openai/gpt-oss-safeguard-20b": 181400177,
648
+ "qwen/qwen3-32b-04-28": 112542714,
649
+ "openai/gpt-oss-120b:exacto": 84345175,
650
+ "Others": 177017150
651
+ }
652
+ },
653
+ {
654
+ "x": "2025-11-21 00:00:00",
655
+ "ys": {
656
+ "openai/gpt-oss-120b": 2595612466,
657
+ "openai/gpt-oss-20b": 1296586821,
658
+ "meta-llama/llama-4-scout-17b-16e-instruct": 533315664,
659
+ "meta-llama/llama-3.3-70b-instruct": 371584468,
660
+ "moonshotai/kimi-k2-0905": 273243049,
661
+ "openai/gpt-oss-safeguard-20b": 195048356,
662
+ "meta-llama/llama-3.1-8b-instruct": 191747096,
663
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 97058799,
664
+ "qwen/qwen3-32b-04-28": 96927024,
665
+ "Others": 179590637
666
+ }
667
+ },
668
+ {
669
+ "x": "2025-11-22 00:00:00",
670
+ "ys": {
671
+ "openai/gpt-oss-120b": 1857531505,
672
+ "openai/gpt-oss-20b": 1090357899,
673
+ "meta-llama/llama-4-scout-17b-16e-instruct": 514582605,
674
+ "meta-llama/llama-3.3-70b-instruct": 272929073,
675
+ "moonshotai/kimi-k2-0905": 218853822,
676
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 188998627,
677
+ "openai/gpt-oss-safeguard-20b": 170487709,
678
+ "meta-llama/llama-3.1-8b-instruct": 151724761,
679
+ "qwen/qwen3-32b-04-28": 99302300,
680
+ "Others": 107146857
681
+ }
682
+ },
683
+ {
684
+ "x": "2025-11-23 00:00:00",
685
+ "ys": {
686
+ "openai/gpt-oss-120b": 2635723705,
687
+ "openai/gpt-oss-20b": 1440323166,
688
+ "meta-llama/llama-4-scout-17b-16e-instruct": 526233280,
689
+ "meta-llama/llama-3.3-70b-instruct": 326307111,
690
+ "moonshotai/kimi-k2-0905": 212170944,
691
+ "openai/gpt-oss-safeguard-20b": 191156137,
692
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 141780987,
693
+ "meta-llama/llama-3.1-8b-instruct": 114775034,
694
+ "qwen/qwen3-32b-04-28": 84240395,
695
+ "Others": 124465443
696
+ }
697
+ },
698
+ {
699
+ "x": "2025-11-24 00:00:00",
700
+ "ys": {
701
+ "openai/gpt-oss-20b": 2901928117,
702
+ "openai/gpt-oss-120b": 2586905235,
703
+ "meta-llama/llama-4-scout-17b-16e-instruct": 584684026,
704
+ "moonshotai/kimi-k2-0905": 277842033,
705
+ "meta-llama/llama-3.3-70b-instruct": 247006320,
706
+ "openai/gpt-oss-safeguard-20b": 213815496,
707
+ "meta-llama/llama-3.1-8b-instruct": 133142636,
708
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 133050489,
709
+ "qwen/qwen3-32b-04-28": 116934612,
710
+ "Others": 113427291
711
+ }
712
+ },
713
+ {
714
+ "x": "2025-11-25 00:00:00",
715
+ "ys": {
716
+ "openai/gpt-oss-120b": 2585337429,
717
+ "openai/gpt-oss-20b": 1855935008,
718
+ "meta-llama/llama-4-scout-17b-16e-instruct": 642908570,
719
+ "moonshotai/kimi-k2-0905": 310276797,
720
+ "meta-llama/llama-3.3-70b-instruct": 302463993,
721
+ "openai/gpt-oss-safeguard-20b": 219589741,
722
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 217309240,
723
+ "meta-llama/llama-3.1-8b-instruct": 137287990,
724
+ "qwen/qwen3-32b-04-28": 105486217,
725
+ "Others": 111210199
726
+ }
727
+ },
728
+ {
729
+ "x": "2025-11-26 00:00:00",
730
+ "ys": {
731
+ "openai/gpt-oss-120b": 3283371060,
732
+ "openai/gpt-oss-20b": 1208675375,
733
+ "meta-llama/llama-4-scout-17b-16e-instruct": 662482203,
734
+ "moonshotai/kimi-k2-0905": 323932917,
735
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 267404663,
736
+ "meta-llama/llama-3.3-70b-instruct": 264231419,
737
+ "openai/gpt-oss-safeguard-20b": 249139243,
738
+ "qwen/qwen3-32b-04-28": 165609410,
739
+ "openai/gpt-oss-120b:exacto": 124999893,
740
+ "Others": 229338193
741
+ }
742
+ },
743
+ {
744
+ "x": "2025-11-27 00:00:00",
745
+ "ys": {
746
+ "openai/gpt-oss-120b": 3260188213,
747
+ "openai/gpt-oss-20b": 2378791377,
748
+ "meta-llama/llama-4-scout-17b-16e-instruct": 457733183,
749
+ "openai/gpt-oss-safeguard-20b": 315179927,
750
+ "meta-llama/llama-3.3-70b-instruct": 297490827,
751
+ "moonshotai/kimi-k2-0905": 293805297,
752
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 293589200,
753
+ "meta-llama/llama-3.1-8b-instruct": 162077804,
754
+ "qwen/qwen3-32b-04-28": 94013539,
755
+ "Others": 157226023
756
+ }
757
+ },
758
+ {
759
+ "x": "2025-11-28 00:00:00",
760
+ "ys": {
761
+ "openai/gpt-oss-120b": 4080894381,
762
+ "openai/gpt-oss-20b": 2575998451,
763
+ "meta-llama/llama-4-scout-17b-16e-instruct": 489142735,
764
+ "openai/gpt-oss-safeguard-20b": 448170998,
765
+ "meta-llama/llama-3.3-70b-instruct": 275398870,
766
+ "moonshotai/kimi-k2-0905": 257958969,
767
+ "meta-llama/llama-3.1-8b-instruct": 246036219,
768
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 100133527,
769
+ "qwen/qwen3-32b-04-28": 83322884,
770
+ "Others": 128285895
771
+ }
772
+ },
773
+ {
774
+ "x": "2025-11-29 00:00:00",
775
+ "ys": {
776
+ "openai/gpt-oss-20b": 3676399896,
777
+ "openai/gpt-oss-120b": 1887400666,
778
+ "meta-llama/llama-4-scout-17b-16e-instruct": 394744450,
779
+ "openai/gpt-oss-safeguard-20b": 314028695,
780
+ "meta-llama/llama-3.3-70b-instruct": 252076195,
781
+ "moonshotai/kimi-k2-0905": 247646939,
782
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 240860243,
783
+ "meta-llama/llama-3.1-8b-instruct": 101977439,
784
+ "qwen/qwen3-32b-04-28": 94076382,
785
+ "Others": 153237162
786
+ }
787
+ },
788
+ {
789
+ "x": "2025-11-30 00:00:00",
790
+ "ys": {
791
+ "openai/gpt-oss-120b": 2400490230,
792
+ "openai/gpt-oss-20b": 1148204274,
793
+ "meta-llama/llama-4-scout-17b-16e-instruct": 397952851,
794
+ "moonshotai/kimi-k2-0905": 392775128,
795
+ "meta-llama/llama-3.3-70b-instruct": 290383502,
796
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 262705383,
797
+ "openai/gpt-oss-safeguard-20b": 228012911,
798
+ "meta-llama/llama-3.1-8b-instruct": 94815770,
799
+ "qwen/qwen3-32b-04-28": 82100888,
800
+ "Others": 140012647
801
+ }
802
+ },
803
+ {
804
+ "x": "2025-12-01 00:00:00",
805
+ "ys": {
806
+ "openai/gpt-oss-120b": 3843285843,
807
+ "openai/gpt-oss-20b": 1350808314,
808
+ "meta-llama/llama-4-scout-17b-16e-instruct": 510763099,
809
+ "moonshotai/kimi-k2-0905": 477698925,
810
+ "openai/gpt-oss-safeguard-20b": 301229435,
811
+ "meta-llama/llama-3.3-70b-instruct": 275561338,
812
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 193578365,
813
+ "meta-llama/llama-3.1-8b-instruct": 101549743,
814
+ "qwen/qwen3-32b-04-28": 96896912,
815
+ "Others": 93449403
816
+ }
817
+ },
818
+ {
819
+ "x": "2025-12-02 00:00:00",
820
+ "ys": {
821
+ "openai/gpt-oss-120b": 4565105950,
822
+ "openai/gpt-oss-20b": 1466039911,
823
+ "moonshotai/kimi-k2-0905": 514549469,
824
+ "openai/gpt-oss-safeguard-20b": 453166706,
825
+ "meta-llama/llama-4-scout-17b-16e-instruct": 424477875,
826
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 239963537,
827
+ "meta-llama/llama-3.3-70b-instruct": 237599635,
828
+ "qwen/qwen3-32b-04-28": 71042698,
829
+ "meta-llama/llama-3.1-8b-instruct": 65390333,
830
+ "Others": 95988122
831
+ }
832
+ },
833
+ {
834
+ "x": "2025-12-03 00:00:00",
835
+ "ys": {
836
+ "openai/gpt-oss-120b": 3568139475,
837
+ "openai/gpt-oss-20b": 1901900683,
838
+ "moonshotai/kimi-k2-0905": 417863103,
839
+ "meta-llama/llama-4-scout-17b-16e-instruct": 406566614,
840
+ "openai/gpt-oss-safeguard-20b": 356736523,
841
+ "meta-llama/llama-3.3-70b-instruct": 280267557,
842
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 266018907,
843
+ "meta-llama/llama-3.1-8b-instruct": 117321838,
844
+ "qwen/qwen3-32b-04-28": 63873992,
845
+ "Others": 99339219
846
+ }
847
+ },
848
+ {
849
+ "x": "2025-12-04 00:00:00",
850
+ "ys": {
851
+ "openai/gpt-oss-120b": 4169804413,
852
+ "openai/gpt-oss-20b": 2273021951,
853
+ "meta-llama/llama-4-scout-17b-16e-instruct": 502154984,
854
+ "openai/gpt-oss-safeguard-20b": 438110933,
855
+ "moonshotai/kimi-k2-0905": 363482752,
856
+ "meta-llama/llama-3.3-70b-instruct": 278564675,
857
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 225138118,
858
+ "meta-llama/llama-3.1-8b-instruct": 148364373,
859
+ "qwen/qwen3-32b-04-28": 57639935,
860
+ "Others": 92728103
861
+ }
862
+ },
863
+ {
864
+ "x": "2025-12-05 00:00:00",
865
+ "ys": {
866
+ "openai/gpt-oss-120b": 4785594372,
867
+ "openai/gpt-oss-20b": 2239852259,
868
+ "meta-llama/llama-4-scout-17b-16e-instruct": 694159546,
869
+ "openai/gpt-oss-safeguard-20b": 500668380,
870
+ "meta-llama/llama-3.3-70b-instruct": 305871412,
871
+ "moonshotai/kimi-k2-0905": 282507683,
872
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 156047314,
873
+ "meta-llama/llama-3.1-8b-instruct": 129061861,
874
+ "qwen/qwen3-32b-04-28": 61413026,
875
+ "Others": 88803486
876
+ }
877
+ },
878
+ {
879
+ "x": "2025-12-06 00:00:00",
880
+ "ys": {
881
+ "openai/gpt-oss-120b": 3465479787,
882
+ "openai/gpt-oss-20b": 2292984614,
883
+ "openai/gpt-oss-safeguard-20b": 507643938,
884
+ "meta-llama/llama-4-scout-17b-16e-instruct": 304354203,
885
+ "meta-llama/llama-3.3-70b-instruct": 255977230,
886
+ "moonshotai/kimi-k2-0905": 219278533,
887
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 135622115,
888
+ "qwen/qwen3-32b-04-28": 108556293,
889
+ "meta-llama/llama-3.1-8b-instruct": 82000125,
890
+ "Others": 63725527
891
+ }
892
+ },
893
+ {
894
+ "x": "2025-12-07 00:00:00",
895
+ "ys": {
896
+ "openai/gpt-oss-120b": 3015415783,
897
+ "openai/gpt-oss-20b": 2963420129,
898
+ "openai/gpt-oss-safeguard-20b": 469625202,
899
+ "meta-llama/llama-4-scout-17b-16e-instruct": 358380695,
900
+ "moonshotai/kimi-k2-0905": 318050382,
901
+ "meta-llama/llama-3.3-70b-instruct": 276332311,
902
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 186102359,
903
+ "qwen/qwen3-32b-04-28": 85003062,
904
+ "meta-llama/llama-3.1-8b-instruct": 68293822,
905
+ "Others": 109213983
906
+ }
907
+ },
908
+ {
909
+ "x": "2025-12-08 00:00:00",
910
+ "ys": {
911
+ "openai/gpt-oss-120b": 4827647072,
912
+ "openai/gpt-oss-20b": 2159760077,
913
+ "openai/gpt-oss-safeguard-20b": 696362166,
914
+ "meta-llama/llama-4-scout-17b-16e-instruct": 385627199,
915
+ "moonshotai/kimi-k2-0905": 316384742,
916
+ "meta-llama/llama-3.3-70b-instruct": 244370459,
917
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 217518150,
918
+ "meta-llama/llama-3.1-8b-instruct": 77875734,
919
+ "qwen/qwen3-32b-04-28": 67179701,
920
+ "Others": 147714377
921
+ }
922
+ },
923
+ {
924
+ "x": "2025-12-09 00:00:00",
925
+ "ys": {
926
+ "openai/gpt-oss-20b": 8223007036,
927
+ "openai/gpt-oss-120b": 5919277850,
928
+ "openai/gpt-oss-safeguard-20b": 648500123,
929
+ "meta-llama/llama-4-scout-17b-16e-instruct": 526201548,
930
+ "moonshotai/kimi-k2-0905": 389680926,
931
+ "meta-llama/llama-3.3-70b-instruct": 240668837,
932
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 159401537,
933
+ "meta-llama/llama-3.1-8b-instruct": 128242757,
934
+ "qwen/qwen3-32b-04-28": 76695841,
935
+ "Others": 122957387
936
+ }
937
+ },
938
+ {
939
+ "x": "2025-12-10 00:00:00",
940
+ "ys": {
941
+ "openai/gpt-oss-20b": 8449369775,
942
+ "openai/gpt-oss-120b": 6852900937,
943
+ "openai/gpt-oss-safeguard-20b": 647428174,
944
+ "moonshotai/kimi-k2-0905": 492009106,
945
+ "meta-llama/llama-4-scout-17b-16e-instruct": 459131342,
946
+ "meta-llama/llama-3.3-70b-instruct": 426865836,
947
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 148274940,
948
+ "meta-llama/llama-3.1-8b-instruct": 135453912,
949
+ "qwen/qwen3-32b-04-28": 129459259,
950
+ "Others": 131188560
951
+ }
952
+ },
953
+ {
954
+ "x": "2025-12-11 00:00:00",
955
+ "ys": {
956
+ "openai/gpt-oss-120b": 6930781809,
957
+ "openai/gpt-oss-20b": 5468987015,
958
+ "meta-llama/llama-3.3-70b-instruct": 1382658765,
959
+ "moonshotai/kimi-k2-0905": 1092766266,
960
+ "openai/gpt-oss-safeguard-20b": 562364978,
961
+ "meta-llama/llama-4-scout-17b-16e-instruct": 458550179,
962
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 164428763,
963
+ "meta-llama/llama-3.1-8b-instruct": 153763910,
964
+ "moonshotai/kimi-k2-0905:exacto": 105282879,
965
+ "Others": 155470804
966
+ }
967
+ },
968
+ {
969
+ "x": "2025-12-12 00:00:00",
970
+ "ys": {
971
+ "openai/gpt-oss-120b": 7536038616,
972
+ "meta-llama/llama-3.3-70b-instruct": 2953887951,
973
+ "openai/gpt-oss-20b": 1694005959,
974
+ "moonshotai/kimi-k2-0905": 599034668,
975
+ "openai/gpt-oss-safeguard-20b": 514763291,
976
+ "meta-llama/llama-4-scout-17b-16e-instruct": 472926462,
977
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 193131647,
978
+ "meta-llama/llama-3.1-8b-instruct": 116583219,
979
+ "openai/gpt-oss-120b:exacto": 80786246,
980
+ "Others": 139551374
981
+ }
982
+ },
983
+ {
984
+ "x": "2025-12-13 00:00:00",
985
+ "ys": {
986
+ "openai/gpt-oss-120b": 6755862544,
987
+ "meta-llama/llama-3.3-70b-instruct": 2653564484,
988
+ "openai/gpt-oss-20b": 2284706378,
989
+ "openai/gpt-oss-safeguard-20b": 581743817,
990
+ "meta-llama/llama-4-scout-17b-16e-instruct": 473771773,
991
+ "moonshotai/kimi-k2-0905": 381285911,
992
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 170072783,
993
+ "openai/gpt-oss-120b:exacto": 103030189,
994
+ "meta-llama/llama-3.1-8b-instruct": 81818740,
995
+ "Others": 119595381
996
+ }
997
+ },
998
+ {
999
+ "x": "2025-12-14 00:00:00",
1000
+ "ys": {
1001
+ "openai/gpt-oss-120b": 7174726790,
1002
+ "openai/gpt-oss-20b": 2697757459,
1003
+ "openai/gpt-oss-120b:exacto": 985564399,
1004
+ "openai/gpt-oss-safeguard-20b": 689166459,
1005
+ "meta-llama/llama-4-scout-17b-16e-instruct": 420938017,
1006
+ "moonshotai/kimi-k2-0905": 376774584,
1007
+ "meta-llama/llama-3.3-70b-instruct": 239999844,
1008
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 198437649,
1009
+ "qwen/qwen3-32b-04-28": 108567539,
1010
+ "Others": 153858291
1011
+ }
1012
+ },
1013
+ {
1014
+ "x": "2025-12-15 00:00:00",
1015
+ "ys": {
1016
+ "openai/gpt-oss-120b": 8177289873,
1017
+ "openai/gpt-oss-20b": 1960251562,
1018
+ "openai/gpt-oss-safeguard-20b": 731590149,
1019
+ "moonshotai/kimi-k2-0905": 509711959,
1020
+ "meta-llama/llama-4-scout-17b-16e-instruct": 461618818,
1021
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 262544867,
1022
+ "meta-llama/llama-3.3-70b-instruct": 222352498,
1023
+ "openai/gpt-oss-120b:exacto": 179125058,
1024
+ "meta-llama/llama-3.1-8b-instruct": 122467233,
1025
+ "Others": 190689875
1026
+ }
1027
+ },
1028
+ {
1029
+ "x": "2025-12-16 00:00:00",
1030
+ "ys": {
1031
+ "openai/gpt-oss-120b": 7751169334,
1032
+ "openai/gpt-oss-20b": 3495989021,
1033
+ "openai/gpt-oss-120b:exacto": 843118988,
1034
+ "openai/gpt-oss-safeguard-20b": 632349903,
1035
+ "moonshotai/kimi-k2-0905": 513669696,
1036
+ "meta-llama/llama-4-scout-17b-16e-instruct": 409250492,
1037
+ "meta-llama/llama-3.3-70b-instruct": 191122209,
1038
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 167193633,
1039
+ "meta-llama/llama-3.1-8b-instruct": 107960612,
1040
+ "Others": 147114765
1041
+ }
1042
+ },
1043
+ {
1044
+ "x": "2025-12-17 00:00:00",
1045
+ "ys": {
1046
+ "openai/gpt-oss-120b": 7233435944,
1047
+ "openai/gpt-oss-20b": 3353084279,
1048
+ "openai/gpt-oss-safeguard-20b": 705382130,
1049
+ "meta-llama/llama-4-scout-17b-16e-instruct": 438897705,
1050
+ "moonshotai/kimi-k2-0905": 398334118,
1051
+ "meta-llama/llama-3.3-70b-instruct": 219420436,
1052
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 189364256,
1053
+ "meta-llama/llama-3.1-8b-instruct": 141513940,
1054
+ "qwen/qwen3-32b-04-28": 96508781,
1055
+ "Others": 102663213
1056
+ }
1057
+ },
1058
+ {
1059
+ "x": "2025-12-18 00:00:00",
1060
+ "ys": {
1061
+ "openai/gpt-oss-120b": 13434873412,
1062
+ "openai/gpt-oss-20b": 2093611789,
1063
+ "openai/gpt-oss-safeguard-20b": 804587656,
1064
+ "meta-llama/llama-4-scout-17b-16e-instruct": 444995770,
1065
+ "moonshotai/kimi-k2-0905": 390710414,
1066
+ "meta-llama/llama-3.3-70b-instruct": 244424764,
1067
+ "meta-llama/llama-3.1-8b-instruct": 168438677,
1068
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 163690115,
1069
+ "qwen/qwen3-32b-04-28": 87649811,
1070
+ "Others": 96001489
1071
+ }
1072
+ },
1073
+ {
1074
+ "x": "2025-12-19 00:00:00",
1075
+ "ys": {
1076
+ "openai/gpt-oss-120b": 9799918595,
1077
+ "openai/gpt-oss-20b": 2472443608,
1078
+ "openai/gpt-oss-safeguard-20b": 809050123,
1079
+ "meta-llama/llama-4-scout-17b-16e-instruct": 431162946,
1080
+ "moonshotai/kimi-k2-0905": 407967574,
1081
+ "meta-llama/llama-3.3-70b-instruct": 301300911,
1082
+ "meta-llama/llama-3.1-8b-instruct": 220209210,
1083
+ "qwen/qwen3-32b-04-28": 93956683,
1084
+ "meta-llama/llama-guard-4-12b": 52516910,
1085
+ "Others": 113839924
1086
+ }
1087
+ },
1088
+ {
1089
+ "x": "2025-12-20 00:00:00",
1090
+ "ys": {
1091
+ "openai/gpt-oss-120b": 3857142504,
1092
+ "openai/gpt-oss-20b": 3656552366,
1093
+ "openai/gpt-oss-safeguard-20b": 694790227,
1094
+ "qwen/qwen3-32b-04-28": 544478410,
1095
+ "meta-llama/llama-4-scout-17b-16e-instruct": 446112715,
1096
+ "moonshotai/kimi-k2-0905": 317196499,
1097
+ "meta-llama/llama-3.3-70b-instruct": 247137210,
1098
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 230483529,
1099
+ "meta-llama/llama-3.1-8b-instruct": 77534872,
1100
+ "Others": 118971704
1101
+ }
1102
+ },
1103
+ {
1104
+ "x": "2025-12-21 00:00:00",
1105
+ "ys": {
1106
+ "openai/gpt-oss-120b": 5374224079,
1107
+ "openai/gpt-oss-20b": 2863571559,
1108
+ "openai/gpt-oss-safeguard-20b": 1521781514,
1109
+ "moonshotai/kimi-k2-0905": 523888238,
1110
+ "meta-llama/llama-4-scout-17b-16e-instruct": 462942010,
1111
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 276491840,
1112
+ "meta-llama/llama-3.3-70b-instruct": 262700391,
1113
+ "meta-llama/llama-3.1-8b-instruct": 182769221,
1114
+ "qwen/qwen3-32b-04-28": 59872200,
1115
+ "Others": 130162367
1116
+ }
1117
+ },
1118
+ {
1119
+ "x": "2025-12-22 00:00:00",
1120
+ "ys": {
1121
+ "openai/gpt-oss-120b": 7502459848,
1122
+ "openai/gpt-oss-20b": 2304625595,
1123
+ "meta-llama/llama-3.1-8b-instruct": 969584993,
1124
+ "moonshotai/kimi-k2-0905": 738526723,
1125
+ "openai/gpt-oss-safeguard-20b": 598884713,
1126
+ "meta-llama/llama-4-scout-17b-16e-instruct": 382706994,
1127
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 359992609,
1128
+ "meta-llama/llama-3.3-70b-instruct": 325090410,
1129
+ "openai/gpt-oss-120b:exacto": 72905614,
1130
+ "Others": 145614005
1131
+ }
1132
+ },
1133
+ {
1134
+ "x": "2025-12-23 00:00:00",
1135
+ "ys": {
1136
+ "openai/gpt-oss-120b": 9430968044,
1137
+ "openai/gpt-oss-20b": 2970247396,
1138
+ "openai/gpt-oss-safeguard-20b": 701718453,
1139
+ "moonshotai/kimi-k2-0905": 664902693,
1140
+ "meta-llama/llama-3.1-8b-instruct": 473850911,
1141
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 439960198,
1142
+ "meta-llama/llama-3.3-70b-instruct": 315878772,
1143
+ "meta-llama/llama-4-scout-17b-16e-instruct": 279781723,
1144
+ "qwen/qwen3-32b-04-28": 77693180,
1145
+ "Others": 125724764
1146
+ }
1147
+ },
1148
+ {
1149
+ "x": "2025-12-24 00:00:00",
1150
+ "ys": {
1151
+ "openai/gpt-oss-120b": 5278008497,
1152
+ "openai/gpt-oss-20b": 1925499933,
1153
+ "moonshotai/kimi-k2-0905": 654136102,
1154
+ "meta-llama/llama-3.1-8b-instruct": 493928181,
1155
+ "openai/gpt-oss-safeguard-20b": 465799202,
1156
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 414282164,
1157
+ "meta-llama/llama-4-scout-17b-16e-instruct": 221872932,
1158
+ "meta-llama/llama-3.3-70b-instruct": 175595917,
1159
+ "qwen/qwen3-32b-04-28": 68065526,
1160
+ "Others": 108077000
1161
+ }
1162
+ },
1163
+ {
1164
+ "x": "2025-12-25 00:00:00",
1165
+ "ys": {
1166
+ "openai/gpt-oss-120b": 3988185175,
1167
+ "openai/gpt-oss-20b": 2186084546,
1168
+ "meta-llama/llama-3.1-8b-instruct": 646610042,
1169
+ "moonshotai/kimi-k2-0905": 637718494,
1170
+ "openai/gpt-oss-safeguard-20b": 528170690,
1171
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 337417403,
1172
+ "meta-llama/llama-4-scout-17b-16e-instruct": 335621127,
1173
+ "meta-llama/llama-3.3-70b-instruct": 176051266,
1174
+ "moonshotai/kimi-k2-0905:exacto": 69698702,
1175
+ "Others": 142300856
1176
+ }
1177
+ },
1178
+ {
1179
+ "x": "2025-12-26 00:00:00",
1180
+ "ys": {
1181
+ "openai/gpt-oss-120b": 6590312628,
1182
+ "openai/gpt-oss-20b": 2201435840,
1183
+ "moonshotai/kimi-k2-0905": 644640020,
1184
+ "meta-llama/llama-3.1-8b-instruct": 609749639,
1185
+ "openai/gpt-oss-safeguard-20b": 556663433,
1186
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 426395570,
1187
+ "meta-llama/llama-4-scout-17b-16e-instruct": 211314866,
1188
+ "meta-llama/llama-3.3-70b-instruct": 193212562,
1189
+ "qwen/qwen3-32b-04-28": 70816176,
1190
+ "Others": 147713320
1191
+ }
1192
+ },
1193
+ {
1194
+ "x": "2025-12-27 00:00:00",
1195
+ "ys": {
1196
+ "openai/gpt-oss-120b": 8416908059,
1197
+ "openai/gpt-oss-20b": 2033658751,
1198
+ "moonshotai/kimi-k2-0905": 619720159,
1199
+ "meta-llama/llama-3.1-8b-instruct": 588013248,
1200
+ "openai/gpt-oss-safeguard-20b": 533952482,
1201
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 503633498,
1202
+ "meta-llama/llama-3.3-70b-instruct": 198901816,
1203
+ "meta-llama/llama-4-scout-17b-16e-instruct": 170336166,
1204
+ "qwen/qwen3-32b-04-28": 72249689,
1205
+ "Others": 141141257
1206
+ }
1207
+ },
1208
+ {
1209
+ "x": "2025-12-28 00:00:00",
1210
+ "ys": {
1211
+ "openai/gpt-oss-120b": 9782228166,
1212
+ "openai/gpt-oss-20b": 2323240135,
1213
+ "moonshotai/kimi-k2-0905": 654317278,
1214
+ "meta-llama/llama-3.1-8b-instruct": 558641361,
1215
+ "openai/gpt-oss-safeguard-20b": 491952964,
1216
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 394786198,
1217
+ "meta-llama/llama-3.3-70b-instruct": 332500647,
1218
+ "meta-llama/llama-4-scout-17b-16e-instruct": 179587717,
1219
+ "qwen/qwen3-32b-04-28": 76323933,
1220
+ "Others": 140666170
1221
+ }
1222
+ },
1223
+ {
1224
+ "x": "2025-12-29 00:00:00",
1225
+ "ys": {
1226
+ "openai/gpt-oss-120b": 10187482612,
1227
+ "openai/gpt-oss-20b": 2987170404,
1228
+ "moonshotai/kimi-k2-0905": 678504604,
1229
+ "openai/gpt-oss-safeguard-20b": 629204093,
1230
+ "meta-llama/llama-3.1-8b-instruct": 517614482,
1231
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 382967576,
1232
+ "meta-llama/llama-3.3-70b-instruct": 208666163,
1233
+ "meta-llama/llama-4-scout-17b-16e-instruct": 197592257,
1234
+ "qwen/qwen3-32b-04-28": 141873561,
1235
+ "Others": 164112167
1236
+ }
1237
+ },
1238
+ {
1239
+ "x": "2025-12-30 00:00:00",
1240
+ "ys": {
1241
+ "openai/gpt-oss-120b": 7875938833,
1242
+ "openai/gpt-oss-20b": 3520088560,
1243
+ "openai/gpt-oss-safeguard-20b": 730755790,
1244
+ "moonshotai/kimi-k2-0905": 617649426,
1245
+ "meta-llama/llama-3.1-8b-instruct": 480303495,
1246
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 296627892,
1247
+ "meta-llama/llama-4-scout-17b-16e-instruct": 232758790,
1248
+ "meta-llama/llama-3.3-70b-instruct": 172511465,
1249
+ "qwen/qwen3-32b-04-28": 152035613,
1250
+ "Others": 169388889
1251
+ }
1252
+ },
1253
+ {
1254
+ "x": "2025-12-31 00:00:00",
1255
+ "ys": {
1256
+ "openai/gpt-oss-120b": 5595047813,
1257
+ "openai/gpt-oss-20b": 2820963729,
1258
+ "openai/gpt-oss-safeguard-20b": 627249322,
1259
+ "moonshotai/kimi-k2-0905": 554804764,
1260
+ "meta-llama/llama-3.1-8b-instruct": 499163389,
1261
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 365107909,
1262
+ "meta-llama/llama-4-scout-17b-16e-instruct": 242326832,
1263
+ "meta-llama/llama-3.3-70b-instruct": 152322315,
1264
+ "qwen/qwen3-32b-04-28": 117273801,
1265
+ "Others": 133562745
1266
+ }
1267
+ },
1268
+ {
1269
+ "x": "2026-01-01 00:00:00",
1270
+ "ys": {
1271
+ "openai/gpt-oss-120b": 5191812969,
1272
+ "openai/gpt-oss-20b": 2296265398,
1273
+ "openai/gpt-oss-safeguard-20b": 665784096,
1274
+ "meta-llama/llama-3.1-8b-instruct": 595471647,
1275
+ "moonshotai/kimi-k2-0905": 546602918,
1276
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 409739129,
1277
+ "meta-llama/llama-4-scout-17b-16e-instruct": 242909198,
1278
+ "meta-llama/llama-3.3-70b-instruct": 228690726,
1279
+ "qwen/qwen3-32b-04-28": 96866252,
1280
+ "Others": 135666730
1281
+ }
1282
+ },
1283
+ {
1284
+ "x": "2026-01-02 00:00:00",
1285
+ "ys": {
1286
+ "openai/gpt-oss-120b": 6479419391,
1287
+ "openai/gpt-oss-20b": 2106170884,
1288
+ "meta-llama/llama-3.3-70b-instruct": 1173616287,
1289
+ "openai/gpt-oss-safeguard-20b": 712938893,
1290
+ "moonshotai/kimi-k2-0905": 575558751,
1291
+ "meta-llama/llama-3.1-8b-instruct": 467761761,
1292
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 429279184,
1293
+ "meta-llama/llama-4-scout-17b-16e-instruct": 272009106,
1294
+ "qwen/qwen3-32b-04-28": 133108786,
1295
+ "Others": 125658769
1296
+ }
1297
+ },
1298
+ {
1299
+ "x": "2026-01-03 00:00:00",
1300
+ "ys": {
1301
+ "openai/gpt-oss-120b": 5563334886,
1302
+ "openai/gpt-oss-20b": 2627326358,
1303
+ "moonshotai/kimi-k2-0905": 1434275002,
1304
+ "openai/gpt-oss-safeguard-20b": 829083726,
1305
+ "meta-llama/llama-3.1-8b-instruct": 511945805,
1306
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 292952418,
1307
+ "meta-llama/llama-4-scout-17b-16e-instruct": 286911196,
1308
+ "meta-llama/llama-3.3-70b-instruct": 209614276,
1309
+ "qwen/qwen3-32b-04-28": 112530837,
1310
+ "Others": 126265908
1311
+ }
1312
+ },
1313
+ {
1314
+ "x": "2026-01-04 00:00:00",
1315
+ "ys": {
1316
+ "openai/gpt-oss-120b": 4771273524,
1317
+ "openai/gpt-oss-20b": 1728259338,
1318
+ "moonshotai/kimi-k2-0905": 1498313710,
1319
+ "openai/gpt-oss-safeguard-20b": 1050730360,
1320
+ "meta-llama/llama-3.1-8b-instruct": 451223856,
1321
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 431689995,
1322
+ "meta-llama/llama-4-scout-17b-16e-instruct": 326912226,
1323
+ "meta-llama/llama-3.3-70b-instruct": 238355540,
1324
+ "qwen/qwen3-32b-04-28": 158742589,
1325
+ "Others": 132532086
1326
+ }
1327
+ },
1328
+ {
1329
+ "x": "2026-01-05 00:00:00",
1330
+ "ys": {
1331
+ "openai/gpt-oss-120b": 7803899491,
1332
+ "openai/gpt-oss-20b": 2231724655,
1333
+ "moonshotai/kimi-k2-0905": 1017850212,
1334
+ "openai/gpt-oss-safeguard-20b": 745702565,
1335
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 447896705,
1336
+ "meta-llama/llama-3.1-8b-instruct": 424909799,
1337
+ "meta-llama/llama-4-scout-17b-16e-instruct": 294379417,
1338
+ "meta-llama/llama-3.3-70b-instruct": 275900792,
1339
+ "qwen/qwen3-32b-04-28": 151930634,
1340
+ "Others": 141957386
1341
+ }
1342
+ }
1343
+ ],
1344
+ "fetched_at": "2026-01-06T00:09:40.176155",
1345
+ "success": true
1346
+ }
data/providers/nebius.json ADDED
@@ -0,0 +1,1358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "provider": "nebius",
3
+ "url": "https://openrouter.ai/provider/nebius",
4
+ "data": [
5
+ {
6
+ "x": "2025-10-08 00:00:00",
7
+ "ys": {
8
+ "qwen/qwen3-coder-30b-a3b-instruct": 23886636962,
9
+ "openai/gpt-oss-20b": 1802168099,
10
+ "qwen/qwen3-coder-480b-a35b-07-25": 514916978,
11
+ "deepseek/deepseek-chat-v3-0324": 498795512,
12
+ "google/gemma-3-27b-it": 433188682,
13
+ "qwen/qwen3-30b-a3b-instruct-2507": 316874140,
14
+ "qwen/qwen2.5-vl-72b-instruct": 290091085,
15
+ "meta-llama/llama-3.3-70b-instruct": 193277361,
16
+ "nousresearch/hermes-3-llama-3.1-405b": 163408172,
17
+ "Others": 1289029510
18
+ }
19
+ },
20
+ {
21
+ "x": "2025-10-09 00:00:00",
22
+ "ys": {
23
+ "qwen/qwen3-coder-30b-a3b-instruct": 10259410275,
24
+ "openai/gpt-oss-20b": 5176084074,
25
+ "deepseek/deepseek-chat-v3-0324": 554812144,
26
+ "google/gemma-3-27b-it": 462349083,
27
+ "qwen/qwen3-coder-480b-a35b-07-25": 451139463,
28
+ "meta-llama/llama-3.3-70b-instruct": 293389729,
29
+ "qwen/qwen3-30b-a3b-instruct-2507": 231178420,
30
+ "qwen/qwen3-235b-a22b-07-25": 186748543,
31
+ "nousresearch/hermes-3-llama-3.1-405b": 159749820,
32
+ "Others": 1327612742
33
+ }
34
+ },
35
+ {
36
+ "x": "2025-10-10 00:00:00",
37
+ "ys": {
38
+ "qwen/qwen3-coder-30b-a3b-instruct": 4442315388,
39
+ "deepseek/deepseek-chat-v3-0324": 558801667,
40
+ "google/gemma-3-27b-it": 514862382,
41
+ "qwen/qwen3-coder-480b-a35b-07-25": 502080753,
42
+ "openai/gpt-oss-20b": 413493038,
43
+ "deepseek/deepseek-chat-v3": 378749304,
44
+ "meta-llama/llama-3.3-70b-instruct": 296765099,
45
+ "qwen/qwen3-30b-a3b-instruct-2507": 169247813,
46
+ "deepseek/deepseek-r1-0528": 159859959,
47
+ "Others": 1245059232
48
+ }
49
+ },
50
+ {
51
+ "x": "2025-10-11 00:00:00",
52
+ "ys": {
53
+ "qwen/qwen3-coder-30b-a3b-instruct": 545695456,
54
+ "deepseek/deepseek-chat-v3-0324": 513459759,
55
+ "qwen/qwen3-coder-480b-a35b-07-25": 510313684,
56
+ "google/gemma-3-27b-it": 502774494,
57
+ "meta-llama/llama-3.3-70b-instruct": 281755734,
58
+ "deepseek/deepseek-chat-v3": 184106064,
59
+ "nousresearch/hermes-3-llama-3.1-405b": 159400280,
60
+ "qwen/qwen3-30b-a3b-instruct-2507": 127395801,
61
+ "deepseek/deepseek-r1-0528": 123999561,
62
+ "Others": 1039855901
63
+ }
64
+ },
65
+ {
66
+ "x": "2025-10-12 00:00:00",
67
+ "ys": {
68
+ "qwen/qwen3-coder-30b-a3b-instruct": 2649586882,
69
+ "openai/gpt-oss-20b": 2243634338,
70
+ "deepseek/deepseek-chat-v3-0324": 554254962,
71
+ "qwen/qwen3-coder-480b-a35b-07-25": 462173332,
72
+ "google/gemma-3-27b-it": 438990945,
73
+ "meta-llama/llama-3.3-70b-instruct": 279841441,
74
+ "nousresearch/hermes-3-llama-3.1-405b": 191415818,
75
+ "meta-llama/llama-3.1-8b-instruct": 125580941,
76
+ "deepseek/deepseek-r1-0528": 123920553,
77
+ "Others": 962648467
78
+ }
79
+ },
80
+ {
81
+ "x": "2025-10-13 00:00:00",
82
+ "ys": {
83
+ "qwen/qwen3-coder-30b-a3b-instruct": 6313691867,
84
+ "openai/gpt-oss-20b": 5177921093,
85
+ "deepseek/deepseek-chat-v3-0324": 558046641,
86
+ "qwen/qwen3-coder-480b-a35b-07-25": 488056980,
87
+ "google/gemma-3-27b-it": 454077575,
88
+ "meta-llama/llama-3.3-70b-instruct": 379188441,
89
+ "openai/gpt-oss-120b": 244623666,
90
+ "meta-llama/llama-3.1-8b-instruct": 189649022,
91
+ "nousresearch/hermes-3-llama-3.1-405b": 183895339,
92
+ "Others": 1537117108
93
+ }
94
+ },
95
+ {
96
+ "x": "2025-10-14 00:00:00",
97
+ "ys": {
98
+ "openai/gpt-oss-20b": 2438674533,
99
+ "qwen/qwen3-coder-30b-a3b-instruct": 1533075667,
100
+ "deepseek/deepseek-chat-v3-0324": 814721436,
101
+ "google/gemma-3-27b-it": 584786738,
102
+ "qwen/qwen3-coder-480b-a35b-07-25": 530802464,
103
+ "qwen/qwen3-30b-a3b-instruct-2507": 308998518,
104
+ "meta-llama/llama-3.3-70b-instruct": 299432313,
105
+ "qwen/qwen3-32b-04-28": 283221773,
106
+ "deepseek/deepseek-chat-v3": 243857021,
107
+ "Others": 1999926979
108
+ }
109
+ },
110
+ {
111
+ "x": "2025-10-15 00:00:00",
112
+ "ys": {
113
+ "google/gemma-3-27b-it": 622171442,
114
+ "deepseek/deepseek-chat-v3-0324": 527918006,
115
+ "qwen/qwen3-coder-480b-a35b-07-25": 484843160,
116
+ "meta-llama/llama-3.1-8b-instruct": 342667077,
117
+ "meta-llama/llama-3.3-70b-instruct": 326348314,
118
+ "qwen/qwen-2.5-72b-instruct": 264676432,
119
+ "moonshotai/kimi-k2": 228354933,
120
+ "nousresearch/hermes-3-llama-3.1-405b": 176159420,
121
+ "openai/gpt-oss-120b": 170601087,
122
+ "Others": 1627886388
123
+ }
124
+ },
125
+ {
126
+ "x": "2025-10-16 00:00:00",
127
+ "ys": {
128
+ "google/gemma-3-27b-it": 645384541,
129
+ "deepseek/deepseek-r1-0528": 479924578,
130
+ "deepseek/deepseek-chat-v3-0324": 457301043,
131
+ "qwen/qwen3-coder-480b-a35b-07-25": 439553961,
132
+ "meta-llama/llama-3.3-70b-instruct": 416077979,
133
+ "qwen/qwen3-30b-a3b-instruct-2507": 283073610,
134
+ "qwen/qwen3-235b-a22b-07-25": 246974482,
135
+ "meta-llama/llama-3.1-8b-instruct": 238301333,
136
+ "nousresearch/hermes-3-llama-3.1-405b": 231298174,
137
+ "Others": 1467403307
138
+ }
139
+ },
140
+ {
141
+ "x": "2025-10-17 00:00:00",
142
+ "ys": {
143
+ "google/gemma-3-27b-it": 654172601,
144
+ "deepseek/deepseek-r1-0528": 596246513,
145
+ "meta-llama/llama-3.3-70b-instruct": 401702478,
146
+ "qwen/qwen3-coder-480b-a35b-07-25": 399815392,
147
+ "deepseek/deepseek-chat-v3-0324": 373194642,
148
+ "nousresearch/hermes-3-llama-3.1-405b": 304725031,
149
+ "qwen/qwen3-235b-a22b-07-25": 256502161,
150
+ "meta-llama/llama-3.1-8b-instruct": 253887911,
151
+ "moonshotai/kimi-k2": 219979450,
152
+ "Others": 1319174816
153
+ }
154
+ },
155
+ {
156
+ "x": "2025-10-18 00:00:00",
157
+ "ys": {
158
+ "meta-llama/llama-3.1-8b-instruct": 1039491879,
159
+ "google/gemma-3-27b-it": 560233294,
160
+ "deepseek/deepseek-chat-v3-0324": 378088260,
161
+ "qwen/qwen3-coder-480b-a35b-07-25": 309161938,
162
+ "meta-llama/llama-3.3-70b-instruct": 294982533,
163
+ "qwen/qwen3-235b-a22b-07-25": 281987621,
164
+ "deepseek/deepseek-chat-v3": 185614088,
165
+ "openai/gpt-oss-120b": 174014211,
166
+ "moonshotai/kimi-k2": 169677066,
167
+ "Others": 955929100
168
+ }
169
+ },
170
+ {
171
+ "x": "2025-10-19 00:00:00",
172
+ "ys": {
173
+ "google/gemma-3-27b-it": 510229687,
174
+ "deepseek/deepseek-chat-v3-0324": 408334742,
175
+ "qwen/qwen3-coder-480b-a35b-07-25": 315327838,
176
+ "meta-llama/llama-3.3-70b-instruct": 311215381,
177
+ "nousresearch/hermes-3-llama-3.1-405b": 173326812,
178
+ "qwen/qwq-32b": 166929768,
179
+ "deepseek/deepseek-chat-v3": 161545685,
180
+ "openai/gpt-oss-120b": 151141365,
181
+ "moonshotai/kimi-k2": 148437160,
182
+ "Others": 909582001
183
+ }
184
+ },
185
+ {
186
+ "x": "2025-10-20 00:00:00",
187
+ "ys": {
188
+ "google/gemma-3-27b-it": 479380091,
189
+ "qwen/qwen3-coder-480b-a35b-07-25": 461813404,
190
+ "deepseek/deepseek-chat-v3-0324": 457394976,
191
+ "meta-llama/llama-3.3-70b-instruct": 371907585,
192
+ "qwen/qwen3-235b-a22b-07-25": 243313517,
193
+ "openai/gpt-oss-120b": 226004265,
194
+ "moonshotai/kimi-k2": 209020310,
195
+ "qwen/qwq-32b": 180144491,
196
+ "nousresearch/hermes-3-llama-3.1-405b": 173920409,
197
+ "Others": 1245797137
198
+ }
199
+ },
200
+ {
201
+ "x": "2025-10-21 00:00:00",
202
+ "ys": {
203
+ "qwen/qwen3-235b-a22b-07-25": 818932042,
204
+ "qwen/qwen3-coder-480b-a35b-07-25": 521820293,
205
+ "deepseek/deepseek-chat-v3-0324": 424845717,
206
+ "google/gemma-3-27b-it": 420953826,
207
+ "qwen/qwen3-30b-a3b-instruct-2507": 299808063,
208
+ "meta-llama/llama-3.3-70b-instruct": 207950707,
209
+ "meta-llama/llama-3.1-8b-instruct": 196924539,
210
+ "nousresearch/hermes-3-llama-3.1-405b": 170311113,
211
+ "moonshotai/kimi-k2": 168399320,
212
+ "Others": 1516465967
213
+ }
214
+ },
215
+ {
216
+ "x": "2025-10-22 00:00:00",
217
+ "ys": {
218
+ "qwen/qwen3-coder-480b-a35b-07-25": 694309545,
219
+ "deepseek/deepseek-chat-v3-0324": 511379385,
220
+ "google/gemma-3-27b-it": 366882632,
221
+ "deepseek/deepseek-chat-v3": 350969118,
222
+ "qwen/qwen3-235b-a22b-07-25": 336996774,
223
+ "meta-llama/llama-3.3-70b-instruct": 317929620,
224
+ "meta-llama/llama-3.1-8b-instruct": 315583084,
225
+ "qwen/qwen3-30b-a3b-instruct-2507": 271751619,
226
+ "qwen/qwen3-coder-30b-a3b-instruct": 174613584,
227
+ "Others": 1476954929
228
+ }
229
+ },
230
+ {
231
+ "x": "2025-10-23 00:00:00",
232
+ "ys": {
233
+ "qwen/qwen3-coder-480b-a35b-07-25": 793368799,
234
+ "deepseek/deepseek-chat-v3-0324": 513885517,
235
+ "qwen/qwen3-30b-a3b-instruct-2507": 412947785,
236
+ "google/gemma-3-27b-it": 351785305,
237
+ "meta-llama/llama-3.1-8b-instruct": 308259237,
238
+ "qwen/qwen3-235b-a22b-07-25": 271801034,
239
+ "meta-llama/llama-3.3-70b-instruct": 252956167,
240
+ "deepseek/deepseek-chat-v3": 219353751,
241
+ "qwen/qwen3-14b-04-28": 179081611,
242
+ "Others": 1223574519
243
+ }
244
+ },
245
+ {
246
+ "x": "2025-10-24 00:00:00",
247
+ "ys": {
248
+ "qwen/qwen3-235b-a22b-07-25": 889859178,
249
+ "meta-llama/llama-3.1-8b-instruct": 849760332,
250
+ "qwen/qwen3-coder-480b-a35b-07-25": 709330795,
251
+ "deepseek/deepseek-chat-v3-0324": 538043291,
252
+ "google/gemma-3-27b-it": 345306487,
253
+ "meta-llama/llama-3.3-70b-instruct": 263652823,
254
+ "qwen/qwen3-coder-30b-a3b-instruct": 241664400,
255
+ "qwen/qwen3-14b-04-28": 195192969,
256
+ "qwen/qwen3-30b-a3b-instruct-2507": 176494235,
257
+ "Others": 1277175307
258
+ }
259
+ },
260
+ {
261
+ "x": "2025-10-25 00:00:00",
262
+ "ys": {
263
+ "qwen/qwen3-235b-a22b-07-25": 881841968,
264
+ "qwen/qwen3-coder-480b-a35b-07-25": 576331582,
265
+ "deepseek/deepseek-chat-v3-0324": 491871715,
266
+ "google/gemma-3-27b-it": 363129065,
267
+ "qwen/qwen3-14b-04-28": 177402966,
268
+ "nousresearch/hermes-3-llama-3.1-405b": 173098502,
269
+ "meta-llama/llama-3.1-8b-instruct": 169983603,
270
+ "qwen/qwen3-30b-a3b-thinking-2507": 158634623,
271
+ "qwen/qwen2.5-vl-72b-instruct": 158165755,
272
+ "Others": 1076116580
273
+ }
274
+ },
275
+ {
276
+ "x": "2025-10-26 00:00:00",
277
+ "ys": {
278
+ "qwen/qwen3-235b-a22b-07-25": 2375217882,
279
+ "deepseek/deepseek-chat-v3-0324": 442552381,
280
+ "qwen/qwen3-coder-480b-a35b-07-25": 409480529,
281
+ "google/gemma-3-27b-it": 375765884,
282
+ "google/gemma-2-9b-it": 326492014,
283
+ "meta-llama/llama-3.1-8b-instruct": 308695734,
284
+ "deepseek/deepseek-chat-v3": 283158582,
285
+ "meta-llama/llama-3.3-70b-instruct": 192368901,
286
+ "qwen/qwen3-14b-04-28": 180200801,
287
+ "Others": 1131045167
288
+ }
289
+ },
290
+ {
291
+ "x": "2025-10-27 00:00:00",
292
+ "ys": {
293
+ "meta-llama/llama-3.1-8b-instruct": 2530078668,
294
+ "qwen/qwen3-235b-a22b-07-25": 2119995686,
295
+ "deepseek/deepseek-chat-v3-0324": 880415865,
296
+ "qwen/qwen3-coder-480b-a35b-07-25": 531781405,
297
+ "google/gemma-3-27b-it": 406849486,
298
+ "qwen/qwen3-30b-a3b-instruct-2507": 299417774,
299
+ "qwen/qwen3-14b-04-28": 182765663,
300
+ "deepseek/deepseek-chat-v3": 172866801,
301
+ "meta-llama/llama-3.3-70b-instruct": 172610765,
302
+ "Others": 1385841073
303
+ }
304
+ },
305
+ {
306
+ "x": "2025-10-28 00:00:00",
307
+ "ys": {
308
+ "qwen/qwen3-235b-a22b-07-25": 796132675,
309
+ "qwen/qwen3-coder-480b-a35b-07-25": 713068863,
310
+ "deepseek/deepseek-chat-v3-0324": 671417955,
311
+ "qwen/qwen3-30b-a3b-instruct-2507": 523789667,
312
+ "google/gemma-3-27b-it": 482360770,
313
+ "meta-llama/llama-3.1-8b-instruct": 363287125,
314
+ "qwen/qwen3-30b-a3b-04-28": 198792222,
315
+ "qwen/qwen3-14b-04-28": 178268440,
316
+ "nousresearch/hermes-3-llama-3.1-405b": 174619253,
317
+ "Others": 1606527759
318
+ }
319
+ },
320
+ {
321
+ "x": "2025-10-29 00:00:00",
322
+ "ys": {
323
+ "qwen/qwen3-coder-480b-a35b-07-25": 1640567178,
324
+ "qwen/qwen3-235b-a22b-07-25": 1213925251,
325
+ "deepseek/deepseek-chat-v3-0324": 561746089,
326
+ "meta-llama/llama-3.1-8b-instruct": 535191471,
327
+ "google/gemma-3-27b-it": 369941021,
328
+ "qwen/qwen3-30b-a3b-instruct-2507": 278369609,
329
+ "qwen/qwen-2.5-72b-instruct": 268225850,
330
+ "qwen/qwen3-14b-04-28": 227814793,
331
+ "deepseek/deepseek-r1-0528": 208787295,
332
+ "Others": 1667618490
333
+ }
334
+ },
335
+ {
336
+ "x": "2025-10-30 00:00:00",
337
+ "ys": {
338
+ "qwen/qwen3-coder-480b-a35b-07-25": 1683321285,
339
+ "deepseek/deepseek-chat-v3-0324": 526222954,
340
+ "google/gemma-3-27b-it": 386327603,
341
+ "deepseek/deepseek-r1-0528": 373420421,
342
+ "qwen/qwen3-235b-a22b-07-25": 329884062,
343
+ "meta-llama/llama-3.1-8b-instruct": 304860872,
344
+ "qwen/qwen3-30b-a3b-instruct-2507": 280946526,
345
+ "qwen/qwen-2.5-72b-instruct": 230434284,
346
+ "qwen/qwen3-32b-04-28": 216683503,
347
+ "Others": 1855984092
348
+ }
349
+ },
350
+ {
351
+ "x": "2025-10-31 00:00:00",
352
+ "ys": {
353
+ "qwen/qwen3-coder-480b-a35b-07-25": 964003422,
354
+ "deepseek/deepseek-chat-v3-0324": 503846342,
355
+ "google/gemma-3-27b-it": 432947989,
356
+ "qwen/qwen3-235b-a22b-07-25": 303870913,
357
+ "meta-llama/llama-3.1-8b-instruct": 262086704,
358
+ "qwen/qwen3-32b-04-28": 241983351,
359
+ "qwen/qwen3-30b-a3b-instruct-2507": 202595615,
360
+ "meta-llama/llama-3.3-70b-instruct": 182333249,
361
+ "nousresearch/hermes-3-llama-3.1-405b": 180466827,
362
+ "Others": 1410871817
363
+ }
364
+ },
365
+ {
366
+ "x": "2025-11-01 00:00:00",
367
+ "ys": {
368
+ "deepseek/deepseek-chat-v3-0324": 448533581,
369
+ "google/gemma-3-27b-it": 376341167,
370
+ "qwen/qwen3-coder-480b-a35b-07-25": 366779565,
371
+ "qwen/qwen3-235b-a22b-07-25": 316791753,
372
+ "meta-llama/llama-3.3-70b-instruct": 231683139,
373
+ "meta-llama/llama-3.1-8b-instruct": 197172428,
374
+ "nousresearch/hermes-3-llama-3.1-405b": 187236179,
375
+ "qwen/qwen3-30b-a3b-instruct-2507": 161084576,
376
+ "qwen/qwen3-14b-04-28": 157651991,
377
+ "Others": 1058543492
378
+ }
379
+ },
380
+ {
381
+ "x": "2025-11-02 00:00:00",
382
+ "ys": {
383
+ "deepseek/deepseek-chat-v3-0324": 486049396,
384
+ "qwen/qwen3-coder-480b-a35b-07-25": 441197030,
385
+ "google/gemma-3-27b-it": 408838572,
386
+ "qwen/qwen3-30b-a3b-instruct-2507": 254417378,
387
+ "qwen/qwen3-235b-a22b-07-25": 253651919,
388
+ "meta-llama/llama-3.1-8b-instruct": 249236794,
389
+ "nousresearch/hermes-3-llama-3.1-405b": 207295010,
390
+ "meta-llama/llama-3.3-70b-instruct": 206292579,
391
+ "qwen/qwen-2.5-72b-instruct": 171067161,
392
+ "Others": 1295940245
393
+ }
394
+ },
395
+ {
396
+ "x": "2025-11-03 00:00:00",
397
+ "ys": {
398
+ "qwen/qwen3-coder-480b-a35b-07-25": 671757218,
399
+ "qwen/qwen-2.5-72b-instruct": 668928348,
400
+ "deepseek/deepseek-chat-v3-0324": 528160780,
401
+ "google/gemma-3-27b-it": 449501574,
402
+ "meta-llama/llama-3.1-8b-instruct": 357264805,
403
+ "qwen/qwen3-32b-04-28": 349448709,
404
+ "qwen/qwen3-235b-a22b-07-25": 190315803,
405
+ "nousresearch/hermes-3-llama-3.1-405b": 188652953,
406
+ "qwen/qwen3-14b-04-28": 180366580,
407
+ "Others": 1612126521
408
+ }
409
+ },
410
+ {
411
+ "x": "2025-11-04 00:00:00",
412
+ "ys": {
413
+ "qwen/qwen3-coder-480b-a35b-07-25": 680876684,
414
+ "deepseek/deepseek-chat-v3-0324": 526116476,
415
+ "google/gemma-3-27b-it": 443016969,
416
+ "deepseek/deepseek-r1-0528": 276230400,
417
+ "qwen/qwen3-32b-04-28": 254375665,
418
+ "meta-llama/llama-3.1-8b-instruct": 242879807,
419
+ "qwen/qwen3-30b-a3b-instruct-2507": 186024615,
420
+ "moonshotai/kimi-k2": 171233903,
421
+ "meta-llama/llama-3.3-70b-instruct": 152460016,
422
+ "Others": 1252722560
423
+ }
424
+ },
425
+ {
426
+ "x": "2025-11-05 00:00:00",
427
+ "ys": {
428
+ "qwen/qwen3-coder-480b-a35b-07-25": 1016867156,
429
+ "deepseek/deepseek-chat-v3-0324": 728043567,
430
+ "google/gemma-3-27b-it": 376213982,
431
+ "deepseek/deepseek-r1-0528": 351467177,
432
+ "qwen/qwen3-32b-04-28": 304166065,
433
+ "meta-llama/llama-3.1-8b-instruct": 260082243,
434
+ "qwen/qwen3-30b-a3b-instruct-2507": 214567783,
435
+ "qwen/qwen3-30b-a3b-thinking-2507": 200718800,
436
+ "qwen/qwen3-235b-a22b-07-25": 190789068,
437
+ "Others": 791697813
438
+ }
439
+ },
440
+ {
441
+ "x": "2025-11-06 00:00:00",
442
+ "ys": {
443
+ "qwen/qwen3-coder-480b-a35b-07-25": 1089783156,
444
+ "google/gemma-3-27b-it": 1035157970,
445
+ "deepseek/deepseek-chat-v3-0324": 566256752,
446
+ "meta-llama/llama-3.1-8b-instruct": 305855763,
447
+ "qwen/qwen3-32b-04-28": 260033883,
448
+ "qwen/qwen3-235b-a22b-07-25": 241033503,
449
+ "google/gemma-2-9b-it": 230722664,
450
+ "qwen/qwen3-30b-a3b-instruct-2507": 212753526,
451
+ "meta-llama/llama-3.3-70b-instruct": 209720524,
452
+ "Others": 1087080036
453
+ }
454
+ },
455
+ {
456
+ "x": "2025-11-07 00:00:00",
457
+ "ys": {
458
+ "google/gemma-3-27b-it": 1065598855,
459
+ "qwen/qwen3-235b-a22b-07-25": 855855524,
460
+ "qwen/qwen3-coder-480b-a35b-07-25": 746156563,
461
+ "deepseek/deepseek-chat-v3-0324": 506699198,
462
+ "qwen/qwen3-32b-04-28": 469442253,
463
+ "qwen/qwen3-embedding-8b": 336815802,
464
+ "meta-llama/llama-3.3-70b-instruct": 291811690,
465
+ "meta-llama/llama-3.1-8b-instruct": 275915440,
466
+ "google/gemma-2-9b-it": 217535566,
467
+ "Others": 932465519
468
+ }
469
+ },
470
+ {
471
+ "x": "2025-11-08 00:00:00",
472
+ "ys": {
473
+ "google/gemma-3-27b-it": 1361256166,
474
+ "qwen/qwen3-coder-480b-a35b-07-25": 447454580,
475
+ "deepseek/deepseek-chat-v3-0324": 439111062,
476
+ "qwen/qwen3-32b-04-28": 262083214,
477
+ "qwen/qwen3-235b-a22b-07-25": 253071158,
478
+ "meta-llama/llama-3.1-8b-instruct": 227975271,
479
+ "meta-llama/llama-3.3-70b-instruct": 213421108,
480
+ "qwen/qwen3-30b-a3b-instruct-2507": 207195081,
481
+ "google/gemma-2-9b-it": 203960592,
482
+ "Others": 725623070
483
+ }
484
+ },
485
+ {
486
+ "x": "2025-11-09 00:00:00",
487
+ "ys": {
488
+ "google/gemma-3-27b-it": 1494883983,
489
+ "qwen/qwen3-coder-480b-a35b-07-25": 869241763,
490
+ "meta-llama/llama-3.1-8b-instruct": 619945260,
491
+ "deepseek/deepseek-chat-v3-0324": 447472190,
492
+ "meta-llama/llama-3.3-70b-instruct": 375680344,
493
+ "qwen/qwen3-embedding-8b": 334433136,
494
+ "qwen/qwen3-235b-a22b-07-25": 293316827,
495
+ "google/gemma-2-9b-it": 198870552,
496
+ "qwen/qwen3-32b-04-28": 163037216,
497
+ "Others": 708795402
498
+ }
499
+ },
500
+ {
501
+ "x": "2025-11-10 00:00:00",
502
+ "ys": {
503
+ "qwen/qwen3-235b-a22b-07-25": 992009421,
504
+ "google/gemma-3-27b-it": 966455625,
505
+ "qwen/qwen3-coder-480b-a35b-07-25": 760615883,
506
+ "qwen/qwen3-32b-04-28": 525717898,
507
+ "qwen/qwen3-embedding-8b": 492079688,
508
+ "deepseek/deepseek-chat-v3-0324": 478031506,
509
+ "qwen/qwen3-coder-30b-a3b-instruct": 321327332,
510
+ "meta-llama/llama-3.3-70b-instruct": 273250306,
511
+ "meta-llama/llama-3.1-8b-instruct": 267287064,
512
+ "Others": 963696915
513
+ }
514
+ },
515
+ {
516
+ "x": "2025-11-11 00:00:00",
517
+ "ys": {
518
+ "google/gemma-3-27b-it": 902969289,
519
+ "qwen/qwen3-embedding-8b": 644021344,
520
+ "qwen/qwen3-coder-480b-a35b-07-25": 604847091,
521
+ "qwen/qwen3-32b-04-28": 593140186,
522
+ "deepseek/deepseek-chat-v3-0324": 568103839,
523
+ "qwen/qwen3-coder-30b-a3b-instruct": 461096363,
524
+ "deepseek/deepseek-r1-0528": 306622501,
525
+ "meta-llama/llama-3.3-70b-instruct": 254267408,
526
+ "meta-llama/llama-3.1-8b-instruct": 251133979,
527
+ "Others": 1096091105
528
+ }
529
+ },
530
+ {
531
+ "x": "2025-11-12 00:00:00",
532
+ "ys": {
533
+ "google/gemma-3-27b-it": 975828786,
534
+ "deepseek/deepseek-chat-v3-0324": 961248179,
535
+ "qwen/qwen3-32b-04-28": 856924567,
536
+ "qwen/qwen3-embedding-8b": 700444771,
537
+ "qwen/qwen3-coder-480b-a35b-07-25": 681045654,
538
+ "qwen/qwen3-235b-a22b-07-25": 348119050,
539
+ "google/gemma-2-9b-it": 301526146,
540
+ "meta-llama/llama-3.1-8b-instruct": 300351337,
541
+ "deepseek/deepseek-r1-0528": 272949081,
542
+ "Others": 1104529692
543
+ }
544
+ },
545
+ {
546
+ "x": "2025-11-13 00:00:00",
547
+ "ys": {
548
+ "deepseek/deepseek-chat-v3-0324": 1181227996,
549
+ "google/gemma-3-27b-it": 884223550,
550
+ "qwen/qwen3-32b-04-28": 699304919,
551
+ "qwen/qwen3-embedding-8b": 686702639,
552
+ "qwen/qwen3-235b-a22b-07-25": 624847236,
553
+ "qwen/qwen3-coder-480b-a35b-07-25": 591013362,
554
+ "meta-llama/llama-3.1-8b-instruct": 369433523,
555
+ "google/gemma-2-9b-it": 215027481,
556
+ "moonshotai/kimi-k2": 206015733,
557
+ "Others": 940377078
558
+ }
559
+ },
560
+ {
561
+ "x": "2025-11-14 00:00:00",
562
+ "ys": {
563
+ "qwen/qwen3-embedding-8b": 2311977191,
564
+ "google/gemma-3-27b-it": 988674070,
565
+ "qwen/qwen3-32b-04-28": 638412920,
566
+ "deepseek/deepseek-chat-v3-0324": 537180161,
567
+ "qwen/qwen3-coder-480b-a35b-07-25": 462934828,
568
+ "qwen/qwen3-235b-a22b-07-25": 299734266,
569
+ "meta-llama/llama-3.1-8b-instruct": 286089629,
570
+ "moonshotai/kimi-k2": 221745748,
571
+ "deepseek/deepseek-r1-0528": 218457730,
572
+ "Others": 1119374155
573
+ }
574
+ },
575
+ {
576
+ "x": "2025-11-15 00:00:00",
577
+ "ys": {
578
+ "qwen/qwen3-embedding-8b": 3334948048,
579
+ "qwen/qwen3-235b-a22b-07-25": 1112048323,
580
+ "google/gemma-3-27b-it": 834214540,
581
+ "qwen/qwen3-coder-480b-a35b-07-25": 484583149,
582
+ "deepseek/deepseek-chat-v3-0324": 469489337,
583
+ "qwen/qwen3-32b-04-28": 324241133,
584
+ "meta-llama/llama-3.1-8b-instruct": 220123626,
585
+ "google/gemma-2-9b-it": 200410907,
586
+ "qwen/qwen3-coder-30b-a3b-instruct": 179107373,
587
+ "Others": 779275241
588
+ }
589
+ },
590
+ {
591
+ "x": "2025-11-16 00:00:00",
592
+ "ys": {
593
+ "qwen/qwen3-embedding-8b": 1025706353,
594
+ "qwen/qwen3-235b-a22b-07-25": 771776654,
595
+ "deepseek/deepseek-chat-v3-0324": 667096251,
596
+ "qwen/qwen3-coder-480b-a35b-07-25": 542068114,
597
+ "google/gemma-3-27b-it": 355979486,
598
+ "meta-llama/llama-3.1-8b-instruct": 323223689,
599
+ "qwen/qwen3-32b-04-28": 286215773,
600
+ "google/gemma-2-9b-it": 191635372,
601
+ "qwen/qwen3-30b-a3b-instruct-2507": 151490108,
602
+ "Others": 538605543
603
+ }
604
+ },
605
+ {
606
+ "x": "2025-11-17 00:00:00",
607
+ "ys": {
608
+ "qwen/qwen3-coder-30b-a3b-instruct": 6199885534,
609
+ "meta-llama/llama-3.1-8b-instruct": 990634789,
610
+ "qwen/qwen3-235b-a22b-07-25": 965287791,
611
+ "qwen/qwen3-32b-04-28": 657306186,
612
+ "google/gemma-3-27b-it": 644751263,
613
+ "deepseek/deepseek-chat-v3-0324": 553075007,
614
+ "qwen/qwen3-embedding-8b": 502599725,
615
+ "qwen/qwen3-coder-480b-a35b-07-25": 455908485,
616
+ "google/gemma-2-9b-it": 219453582,
617
+ "Others": 1086402151
618
+ }
619
+ },
620
+ {
621
+ "x": "2025-11-18 00:00:00",
622
+ "ys": {
623
+ "qwen/qwen3-coder-30b-a3b-instruct": 4876764815,
624
+ "qwen/qwen3-235b-a22b-07-25": 1061067163,
625
+ "qwen/qwen3-embedding-8b": 814534861,
626
+ "qwen/qwen3-32b-04-28": 668698114,
627
+ "qwen/qwen3-coder-480b-a35b-07-25": 451493847,
628
+ "meta-llama/llama-3.1-8b-instruct": 434814502,
629
+ "deepseek/deepseek-chat-v3-0324": 428677029,
630
+ "google/gemma-3-27b-it": 419823474,
631
+ "qwen/qwen3-30b-a3b-thinking-2507": 285184943,
632
+ "Others": 1087279478
633
+ }
634
+ },
635
+ {
636
+ "x": "2025-11-19 00:00:00",
637
+ "ys": {
638
+ "qwen/qwen3-coder-30b-a3b-instruct": 9938086602,
639
+ "qwen/qwen3-coder-480b-a35b-07-25": 1439576908,
640
+ "qwen/qwen3-embedding-8b": 1080897527,
641
+ "qwen/qwen3-32b-04-28": 1010719044,
642
+ "qwen/qwen3-235b-a22b-07-25": 753318059,
643
+ "deepseek/deepseek-chat-v3-0324": 403595578,
644
+ "meta-llama/llama-3.1-8b-instruct": 365586497,
645
+ "google/gemma-3-27b-it": 325052956,
646
+ "qwen/qwen3-30b-a3b-instruct-2507": 253266939,
647
+ "Others": 1039110586
648
+ }
649
+ },
650
+ {
651
+ "x": "2025-11-20 00:00:00",
652
+ "ys": {
653
+ "qwen/qwen3-coder-30b-a3b-instruct": 14040433230,
654
+ "qwen/qwen3-embedding-8b": 2706154614,
655
+ "qwen/qwen3-32b-04-28": 676596825,
656
+ "meta-llama/llama-3.1-8b-instruct": 565379105,
657
+ "qwen/qwen3-coder-480b-a35b-07-25": 559804206,
658
+ "deepseek/deepseek-chat-v3-0324": 506443699,
659
+ "qwen/qwen3-235b-a22b-07-25": 461478991,
660
+ "google/gemma-3-27b-it": 326558100,
661
+ "google/gemma-2-9b-it": 224085724,
662
+ "Others": 1017895107
663
+ }
664
+ },
665
+ {
666
+ "x": "2025-11-21 00:00:00",
667
+ "ys": {
668
+ "qwen/qwen3-coder-30b-a3b-instruct": 6646572040,
669
+ "qwen/qwen3-embedding-8b": 5301940123,
670
+ "qwen/qwen3-32b-04-28": 591367470,
671
+ "deepseek/deepseek-chat-v3-0324": 521875796,
672
+ "meta-llama/llama-3.1-8b-instruct": 389150868,
673
+ "qwen/qwen3-coder-480b-a35b-07-25": 355578933,
674
+ "google/gemma-3-27b-it": 339590145,
675
+ "qwen/qwen3-235b-a22b-07-25": 273575108,
676
+ "google/gemma-2-9b-it": 221175839,
677
+ "Others": 990780791
678
+ }
679
+ },
680
+ {
681
+ "x": "2025-11-22 00:00:00",
682
+ "ys": {
683
+ "qwen/qwen3-embedding-8b": 3203398030,
684
+ "openai/gpt-oss-120b": 650417629,
685
+ "qwen/qwen3-coder-30b-a3b-instruct": 537167325,
686
+ "meta-llama/llama-3.1-8b-instruct": 436601112,
687
+ "qwen/qwen3-coder-480b-a35b-07-25": 426492788,
688
+ "deepseek/deepseek-chat-v3-0324": 420223794,
689
+ "qwen/qwen3-235b-a22b-07-25": 412817075,
690
+ "google/gemma-3-27b-it": 340687263,
691
+ "qwen/qwen3-32b-04-28": 288945193,
692
+ "Others": 920970676
693
+ }
694
+ },
695
+ {
696
+ "x": "2025-11-23 00:00:00",
697
+ "ys": {
698
+ "qwen/qwen3-embedding-8b": 1338526980,
699
+ "deepseek/deepseek-chat-v3-0324": 468878219,
700
+ "qwen/qwen3-coder-30b-a3b-instruct": 420534239,
701
+ "qwen/qwen3-coder-480b-a35b-07-25": 373604667,
702
+ "meta-llama/llama-3.1-8b-instruct": 352604997,
703
+ "qwen/qwen3-32b-04-28": 287011195,
704
+ "google/gemma-3-27b-it": 276542273,
705
+ "google/gemma-2-9b-it": 172023616,
706
+ "moonshotai/kimi-k2": 131834505,
707
+ "Others": 734127479
708
+ }
709
+ },
710
+ {
711
+ "x": "2025-11-24 00:00:00",
712
+ "ys": {
713
+ "qwen/qwen3-embedding-8b": 5474078683,
714
+ "qwen/qwen3-coder-30b-a3b-instruct": 1792008764,
715
+ "qwen/qwen3-32b-04-28": 574201262,
716
+ "qwen/qwen3-coder-480b-a35b-07-25": 548541952,
717
+ "meta-llama/llama-3.1-8b-instruct": 530605490,
718
+ "deepseek/deepseek-chat-v3-0324": 464317081,
719
+ "google/gemma-3-27b-it": 358921736,
720
+ "meta-llama/llama-3.3-70b-instruct": 298254719,
721
+ "google/gemma-2-9b-it": 192433051,
722
+ "Others": 885860554
723
+ }
724
+ },
725
+ {
726
+ "x": "2025-11-25 00:00:00",
727
+ "ys": {
728
+ "qwen/qwen3-embedding-8b": 2957322639,
729
+ "qwen/qwen3-32b-04-28": 601487097,
730
+ "qwen/qwen3-coder-480b-a35b-07-25": 575484314,
731
+ "qwen/qwen3-coder-30b-a3b-instruct": 533717085,
732
+ "google/gemma-3-27b-it": 465495870,
733
+ "deepseek/deepseek-chat-v3-0324": 438457076,
734
+ "meta-llama/llama-3.1-8b-instruct": 320377200,
735
+ "qwen/qwen2.5-vl-72b-instruct": 256445886,
736
+ "qwen/qwen3-30b-a3b-thinking-2507": 221354237,
737
+ "Others": 925964177
738
+ }
739
+ },
740
+ {
741
+ "x": "2025-11-26 00:00:00",
742
+ "ys": {
743
+ "qwen/qwen3-embedding-8b": 4477232615,
744
+ "qwen/qwen3-coder-30b-a3b-instruct": 668317936,
745
+ "google/gemma-3-27b-it": 556282480,
746
+ "qwen/qwen3-32b-04-28": 530976172,
747
+ "qwen/qwen3-coder-480b-a35b-07-25": 481221460,
748
+ "deepseek/deepseek-chat-v3-0324": 423466724,
749
+ "meta-llama/llama-3.1-8b-instruct": 396192925,
750
+ "google/gemma-2-9b-it": 233494207,
751
+ "qwen/qwen3-30b-a3b-instruct-2507": 204676608,
752
+ "Others": 710452080
753
+ }
754
+ },
755
+ {
756
+ "x": "2025-11-27 00:00:00",
757
+ "ys": {
758
+ "qwen/qwen3-embedding-8b": 2514483809,
759
+ "qwen/qwen3-coder-30b-a3b-instruct": 1413057397,
760
+ "deepseek/deepseek-chat-v3-0324": 439804956,
761
+ "qwen/qwen3-32b-04-28": 432932163,
762
+ "qwen/qwen3-coder-480b-a35b-07-25": 424433600,
763
+ "google/gemma-3-27b-it": 379501588,
764
+ "meta-llama/llama-3.1-8b-instruct": 319082904,
765
+ "qwen/qwen3-30b-a3b-instruct-2507": 248202754,
766
+ "prime-intellect/intellect-3-20251126": 245392738,
767
+ "Others": 1105132489
768
+ }
769
+ },
770
+ {
771
+ "x": "2025-11-28 00:00:00",
772
+ "ys": {
773
+ "qwen/qwen3-embedding-8b": 752952770,
774
+ "qwen/qwen3-coder-30b-a3b-instruct": 613503787,
775
+ "deepseek/deepseek-r1-0528": 513146110,
776
+ "deepseek/deepseek-chat-v3-0324": 502136886,
777
+ "qwen/qwen3-235b-a22b-07-25": 446639991,
778
+ "google/gemma-3-27b-it": 409978556,
779
+ "qwen/qwen3-32b-04-28": 392064147,
780
+ "qwen/qwen3-coder-480b-a35b-07-25": 309066476,
781
+ "qwen/qwen2.5-vl-72b-instruct": 301994239,
782
+ "Others": 1377743425
783
+ }
784
+ },
785
+ {
786
+ "x": "2025-11-29 00:00:00",
787
+ "ys": {
788
+ "qwen/qwen3-embedding-8b": 1162240227,
789
+ "deepseek/deepseek-chat-v3-0324": 506569838,
790
+ "qwen/qwen3-coder-30b-a3b-instruct": 440271915,
791
+ "qwen/qwen3-32b-04-28": 353261371,
792
+ "google/gemma-3-27b-it": 345093853,
793
+ "meta-llama/llama-3.1-8b-instruct": 273695614,
794
+ "google/gemma-2-9b-it": 213263647,
795
+ "qwen/qwen3-30b-a3b-instruct-2507": 202871000,
796
+ "prime-intellect/intellect-3-20251126": 193486101,
797
+ "Others": 818807646
798
+ }
799
+ },
800
+ {
801
+ "x": "2025-11-30 00:00:00",
802
+ "ys": {
803
+ "qwen/qwen3-embedding-8b": 619671752,
804
+ "deepseek/deepseek-chat-v3-0324": 509331187,
805
+ "google/gemma-3-27b-it": 359228890,
806
+ "meta-llama/llama-3.1-8b-instruct": 259421378,
807
+ "qwen/qwen3-coder-30b-a3b-instruct": 258836462,
808
+ "qwen/qwen3-32b-04-28": 256353010,
809
+ "qwen/qwen3-coder-480b-a35b-07-25": 238847639,
810
+ "qwen/qwen3-235b-a22b-07-25": 236436508,
811
+ "qwen/qwen2.5-vl-72b-instruct": 225797418,
812
+ "Others": 873531458
813
+ }
814
+ },
815
+ {
816
+ "x": "2025-12-01 00:00:00",
817
+ "ys": {
818
+ "qwen/qwen3-embedding-8b": 1893836270,
819
+ "qwen/qwen3-32b-04-28": 615363239,
820
+ "deepseek/deepseek-chat-v3-0324": 525482100,
821
+ "qwen/qwen2.5-vl-72b-instruct": 379810822,
822
+ "qwen/qwen3-coder-480b-a35b-07-25": 296923764,
823
+ "meta-llama/llama-3.1-8b-instruct": 293662666,
824
+ "google/gemma-3-27b-it": 292580369,
825
+ "google/gemma-2-9b-it": 203083071,
826
+ "qwen/qwen3-30b-a3b-instruct-2507": 201196678,
827
+ "Others": 815096036
828
+ }
829
+ },
830
+ {
831
+ "x": "2025-12-02 00:00:00",
832
+ "ys": {
833
+ "qwen/qwen3-embedding-8b": 3903784053,
834
+ "qwen/qwen3-32b-04-28": 835675959,
835
+ "deepseek/deepseek-chat-v3-0324": 492731255,
836
+ "google/gemma-3-27b-it": 452113237,
837
+ "qwen/qwen3-30b-a3b-instruct-2507": 433535103,
838
+ "qwen/qwen3-coder-480b-a35b-07-25": 356290674,
839
+ "meta-llama/llama-3.1-8b-instruct": 254734899,
840
+ "qwen/qwen2.5-vl-72b-instruct": 204447842,
841
+ "qwen/qwen3-coder-30b-a3b-instruct": 193974523,
842
+ "Others": 917153619
843
+ }
844
+ },
845
+ {
846
+ "x": "2025-12-03 00:00:00",
847
+ "ys": {
848
+ "qwen/qwen3-embedding-8b": 2751506806,
849
+ "qwen/qwen3-32b-04-28": 827600958,
850
+ "deepseek/deepseek-chat-v3-0324": 590002225,
851
+ "qwen/qwen3-30b-a3b-instruct-2507": 539972628,
852
+ "qwen/qwen3-coder-480b-a35b-07-25": 482106137,
853
+ "meta-llama/llama-3.1-8b-instruct": 345674748,
854
+ "google/gemma-3-27b-it": 257230743,
855
+ "qwen/qwen2.5-vl-72b-instruct": 254550225,
856
+ "google/gemma-2-9b-it": 211583429,
857
+ "Others": 1118039414
858
+ }
859
+ },
860
+ {
861
+ "x": "2025-12-04 00:00:00",
862
+ "ys": {
863
+ "qwen/qwen3-embedding-8b": 3428528649,
864
+ "qwen/qwen3-32b-04-28": 670184763,
865
+ "deepseek/deepseek-chat-v3-0324": 463953586,
866
+ "meta-llama/llama-3.1-8b-instruct": 368403447,
867
+ "qwen/qwen3-coder-480b-a35b-07-25": 367177934,
868
+ "qwen/qwen3-30b-a3b-instruct-2507": 297616427,
869
+ "qwen/qwen3-coder-30b-a3b-instruct": 275769931,
870
+ "qwen/qwen3-235b-a22b-07-25": 239800660,
871
+ "openai/gpt-oss-120b": 237425965,
872
+ "Others": 1191888547
873
+ }
874
+ },
875
+ {
876
+ "x": "2025-12-05 00:00:00",
877
+ "ys": {
878
+ "qwen/qwen3-embedding-8b": 6044867668,
879
+ "qwen/qwen3-coder-480b-a35b-07-25": 823876772,
880
+ "qwen/qwen3-32b-04-28": 579768117,
881
+ "deepseek/deepseek-chat-v3-0324": 350781830,
882
+ "meta-llama/llama-3.1-8b-instruct": 338800983,
883
+ "qwen/qwen3-30b-a3b-instruct-2507": 318577414,
884
+ "openai/gpt-oss-120b": 304776145,
885
+ "qwen/qwen2.5-vl-72b-instruct": 299439492,
886
+ "google/gemma-3-27b-it": 269652958,
887
+ "Others": 1110119050
888
+ }
889
+ },
890
+ {
891
+ "x": "2025-12-06 00:00:00",
892
+ "ys": {
893
+ "qwen/qwen3-embedding-8b": 2013621074,
894
+ "qwen/qwen3-32b-04-28": 951370817,
895
+ "qwen/qwen3-coder-480b-a35b-07-25": 905047155,
896
+ "meta-llama/llama-3.1-8b-instruct": 669770171,
897
+ "deepseek/deepseek-chat-v3-0324": 367381680,
898
+ "openai/gpt-oss-120b": 275312720,
899
+ "qwen/qwen3-30b-a3b-instruct-2507": 201241835,
900
+ "google/gemma-2-9b-it": 195687086,
901
+ "google/gemma-3-27b-it": 166347635,
902
+ "Others": 732152737
903
+ }
904
+ },
905
+ {
906
+ "x": "2025-12-07 00:00:00",
907
+ "ys": {
908
+ "qwen/qwen3-embedding-8b": 4703056973,
909
+ "qwen/qwen3-32b-04-28": 1532646394,
910
+ "qwen/qwen3-coder-480b-a35b-07-25": 1106703093,
911
+ "meta-llama/llama-3.1-8b-instruct": 873343500,
912
+ "deepseek/deepseek-chat-v3-0324": 384061161,
913
+ "openai/gpt-oss-120b": 274225902,
914
+ "qwen/qwen3-30b-a3b-instruct-2507": 273995931,
915
+ "google/gemma-2-9b-it": 174103907,
916
+ "google/gemma-3-27b-it": 169172409,
917
+ "Others": 779265724
918
+ }
919
+ },
920
+ {
921
+ "x": "2025-12-08 00:00:00",
922
+ "ys": {
923
+ "qwen/qwen3-32b-04-28": 1133041164,
924
+ "meta-llama/llama-3.1-8b-instruct": 1032573036,
925
+ "qwen/qwen3-coder-480b-a35b-07-25": 969547749,
926
+ "qwen/qwen3-embedding-8b": 667854633,
927
+ "deepseek/deepseek-chat-v3-0324": 439035375,
928
+ "openai/gpt-oss-120b": 364437492,
929
+ "qwen/qwen3-30b-a3b-instruct-2507": 274472822,
930
+ "qwen/qwen2.5-vl-72b-instruct": 243628219,
931
+ "google/gemma-3-27b-it": 234142489,
932
+ "Others": 1010433127
933
+ }
934
+ },
935
+ {
936
+ "x": "2025-12-09 00:00:00",
937
+ "ys": {
938
+ "qwen/qwen3-32b-04-28": 3069679240,
939
+ "qwen/qwen3-embedding-8b": 1214292147,
940
+ "qwen/qwen3-coder-480b-a35b-07-25": 1073123684,
941
+ "meta-llama/llama-3.1-8b-instruct": 994703066,
942
+ "deepseek/deepseek-chat-v3-0324": 475965367,
943
+ "qwen/qwen2.5-vl-72b-instruct": 346868262,
944
+ "openai/gpt-oss-20b": 287495016,
945
+ "openai/gpt-oss-120b": 275832769,
946
+ "qwen/qwen3-30b-a3b-instruct-2507": 233490023,
947
+ "Others": 1076774999
948
+ }
949
+ },
950
+ {
951
+ "x": "2025-12-10 00:00:00",
952
+ "ys": {
953
+ "qwen/qwen3-32b-04-28": 3607991624,
954
+ "meta-llama/llama-3.1-8b-instruct": 837679897,
955
+ "qwen/qwen3-embedding-8b": 672494887,
956
+ "qwen/qwen3-coder-480b-a35b-07-25": 492355179,
957
+ "deepseek/deepseek-chat-v3-0324": 463150788,
958
+ "meta-llama/llama-3.3-70b-instruct": 337449606,
959
+ "openai/gpt-oss-20b": 328256934,
960
+ "google/gemma-3-27b-it": 299582099,
961
+ "qwen/qwen2.5-vl-72b-instruct": 191812180,
962
+ "Others": 1101719295
963
+ }
964
+ },
965
+ {
966
+ "x": "2025-12-11 00:00:00",
967
+ "ys": {
968
+ "meta-llama/llama-3.1-8b-instruct": 1054188837,
969
+ "qwen/qwen3-coder-480b-a35b-07-25": 911315239,
970
+ "qwen/qwen3-32b-04-28": 560629230,
971
+ "deepseek/deepseek-chat-v3-0324": 471003466,
972
+ "qwen/qwen3-embedding-8b": 335219816,
973
+ "google/gemma-3-27b-it": 277382167,
974
+ "openai/gpt-oss-20b": 258998552,
975
+ "google/gemma-2-9b-it": 209365732,
976
+ "qwen/qwen3-30b-a3b-instruct-2507": 192337829,
977
+ "Others": 1094564744
978
+ }
979
+ },
980
+ {
981
+ "x": "2025-12-12 00:00:00",
982
+ "ys": {
983
+ "meta-llama/llama-3.1-8b-instruct": 966643069,
984
+ "qwen/qwen3-coder-480b-a35b-07-25": 652998423,
985
+ "qwen/qwen3-32b-04-28": 558845093,
986
+ "qwen/qwen3-embedding-8b": 460733789,
987
+ "deepseek/deepseek-chat-v3-0324": 370162074,
988
+ "openai/gpt-oss-20b": 356002351,
989
+ "meta-llama/llama-3.3-70b-instruct": 251056204,
990
+ "openai/gpt-oss-120b": 245896544,
991
+ "qwen/qwen2.5-vl-72b-instruct": 239463677,
992
+ "Others": 1208372397
993
+ }
994
+ },
995
+ {
996
+ "x": "2025-12-13 00:00:00",
997
+ "ys": {
998
+ "meta-llama/llama-3.1-8b-instruct": 997069051,
999
+ "qwen/qwen3-32b-04-28": 381027543,
1000
+ "deepseek/deepseek-chat-v3-0324": 342120714,
1001
+ "qwen/qwen2.5-vl-72b-instruct": 320949785,
1002
+ "qwen/qwen3-embedding-8b": 309571059,
1003
+ "qwen/qwen3-coder-480b-a35b-07-25": 265722256,
1004
+ "google/gemma-3-27b-it": 225770359,
1005
+ "moonshotai/kimi-k2": 201915512,
1006
+ "openai/gpt-oss-120b": 194979437,
1007
+ "Others": 853788545
1008
+ }
1009
+ },
1010
+ {
1011
+ "x": "2025-12-14 00:00:00",
1012
+ "ys": {
1013
+ "meta-llama/llama-3.1-8b-instruct": 1039079611,
1014
+ "qwen/qwen3-embedding-8b": 407352504,
1015
+ "openai/gpt-oss-120b": 372188462,
1016
+ "qwen/qwen3-coder-480b-a35b-07-25": 370478976,
1017
+ "qwen/qwen3-32b-04-28": 369581699,
1018
+ "deepseek/deepseek-chat-v3-0324": 277484489,
1019
+ "google/gemma-3-27b-it": 144418629,
1020
+ "google/gemma-2-9b-it": 144270842,
1021
+ "nousresearch/hermes-4-70b": 130415685,
1022
+ "Others": 904707868
1023
+ }
1024
+ },
1025
+ {
1026
+ "x": "2025-12-15 00:00:00",
1027
+ "ys": {
1028
+ "meta-llama/llama-3.1-8b-instruct": 1284078302,
1029
+ "qwen/qwen3-32b-04-28": 669539243,
1030
+ "qwen/qwen3-embedding-8b": 612544568,
1031
+ "openai/gpt-oss-120b": 402010464,
1032
+ "qwen/qwen3-coder-480b-a35b-07-25": 307631429,
1033
+ "qwen/qwen2.5-vl-72b-instruct": 296196540,
1034
+ "deepseek/deepseek-chat-v3-0324": 289359525,
1035
+ "qwen/qwen3-30b-a3b-instruct-2507": 214296522,
1036
+ "meta-llama/llama-3.3-70b-instruct": 197132225,
1037
+ "Others": 1326744334
1038
+ }
1039
+ },
1040
+ {
1041
+ "x": "2025-12-16 00:00:00",
1042
+ "ys": {
1043
+ "qwen/qwen3-32b-04-28": 1286972608,
1044
+ "qwen/qwen3-embedding-8b": 1175447786,
1045
+ "meta-llama/llama-3.1-8b-instruct": 1111069495,
1046
+ "deepseek/deepseek-chat-v3-0324": 403082183,
1047
+ "qwen/qwen3-coder-480b-a35b-07-25": 382544505,
1048
+ "qwen/qwen3-30b-a3b-instruct-2507": 290888937,
1049
+ "nousresearch/hermes-4-70b": 281457902,
1050
+ "google/gemma-3-27b-it": 224772570,
1051
+ "google/gemma-2-9b-it": 179652266,
1052
+ "Others": 1279538668
1053
+ }
1054
+ },
1055
+ {
1056
+ "x": "2025-12-17 00:00:00",
1057
+ "ys": {
1058
+ "qwen/qwen3-32b-04-28": 2806962531,
1059
+ "meta-llama/llama-3.1-8b-instruct": 1352508535,
1060
+ "qwen/qwen3-embedding-8b": 668041500,
1061
+ "deepseek/deepseek-chat-v3-0324": 439898594,
1062
+ "qwen/qwen2.5-vl-72b-instruct": 403751416,
1063
+ "google/gemma-3-27b-it": 292589598,
1064
+ "qwen/qwen3-coder-480b-a35b-07-25": 286395038,
1065
+ "nousresearch/hermes-4-70b": 199057138,
1066
+ "meta-llama/llama-3.3-70b-instruct": 185370476,
1067
+ "Others": 1032160219
1068
+ }
1069
+ },
1070
+ {
1071
+ "x": "2025-12-18 00:00:00",
1072
+ "ys": {
1073
+ "qwen/qwen3-32b-04-28": 3241087805,
1074
+ "qwen/qwen3-embedding-8b": 1571071121,
1075
+ "meta-llama/llama-3.1-8b-instruct": 1478631717,
1076
+ "qwen/qwen2.5-vl-72b-instruct": 566516790,
1077
+ "deepseek/deepseek-chat-v3-0324": 475056847,
1078
+ "qwen/qwen3-coder-480b-a35b-07-25": 397673176,
1079
+ "google/gemma-3-27b-it": 393276824,
1080
+ "meta-llama/llama-3.3-70b-instruct": 256555489,
1081
+ "nousresearch/hermes-4-70b": 235107043,
1082
+ "Others": 1247003805
1083
+ }
1084
+ },
1085
+ {
1086
+ "x": "2025-12-19 00:00:00",
1087
+ "ys": {
1088
+ "meta-llama/llama-3.1-8b-instruct": 2012219409,
1089
+ "qwen/qwen3-embedding-8b": 1801815479,
1090
+ "qwen/qwen3-32b-04-28": 1655890686,
1091
+ "deepseek/deepseek-chat-v3-0324": 667732902,
1092
+ "qwen/qwen3-coder-480b-a35b-07-25": 352365800,
1093
+ "qwen/qwen3-30b-a3b-instruct-2507": 295977442,
1094
+ "qwen/qwen2.5-vl-72b-instruct": 287992297,
1095
+ "google/gemma-3-27b-it": 262530519,
1096
+ "meta-llama/llama-3.3-70b-instruct": 239026420,
1097
+ "Others": 1114570424
1098
+ }
1099
+ },
1100
+ {
1101
+ "x": "2025-12-20 00:00:00",
1102
+ "ys": {
1103
+ "qwen/qwen3-embedding-8b": 1024711202,
1104
+ "meta-llama/llama-3.1-8b-instruct": 829876214,
1105
+ "deepseek/deepseek-chat-v3-0324": 614132931,
1106
+ "qwen/qwen3-32b-04-28": 353395391,
1107
+ "qwen/qwen3-coder-480b-a35b-07-25": 311405424,
1108
+ "nousresearch/hermes-4-70b": 188133147,
1109
+ "google/gemma-3-27b-it": 162308285,
1110
+ "google/gemma-2-9b-it": 162042618,
1111
+ "qwen/qwen3-30b-a3b-instruct-2507": 160360823,
1112
+ "Others": 811614356
1113
+ }
1114
+ },
1115
+ {
1116
+ "x": "2025-12-21 00:00:00",
1117
+ "ys": {
1118
+ "meta-llama/llama-3.1-8b-instruct": 1194931696,
1119
+ "deepseek/deepseek-chat-v3-0324": 580115458,
1120
+ "qwen/qwen3-embedding-8b": 375119362,
1121
+ "qwen/qwen3-32b-04-28": 345588026,
1122
+ "qwen/qwen3-coder-480b-a35b-07-25": 265111203,
1123
+ "qwen/qwen3-30b-a3b-instruct-2507": 226982591,
1124
+ "nousresearch/hermes-4-70b": 213102236,
1125
+ "qwen/qwen3-235b-a22b-07-25": 181462473,
1126
+ "google/gemma-3-27b-it": 157238956,
1127
+ "Others": 954154837
1128
+ }
1129
+ },
1130
+ {
1131
+ "x": "2025-12-22 00:00:00",
1132
+ "ys": {
1133
+ "meta-llama/llama-3.1-8b-instruct": 794982712,
1134
+ "deepseek/deepseek-chat-v3-0324": 671796446,
1135
+ "qwen/qwen3-embedding-8b": 537784187,
1136
+ "qwen/qwen3-coder-480b-a35b-07-25": 496955193,
1137
+ "qwen/qwen3-32b-04-28": 445704811,
1138
+ "google/gemma-3-27b-it": 293724908,
1139
+ "qwen/qwen3-30b-a3b-instruct-2507": 260660860,
1140
+ "deepseek/deepseek-r1-0528": 255111979,
1141
+ "nousresearch/hermes-4-70b": 209451983,
1142
+ "Others": 1407279535
1143
+ }
1144
+ },
1145
+ {
1146
+ "x": "2025-12-23 00:00:00",
1147
+ "ys": {
1148
+ "meta-llama/llama-3.1-8b-instruct": 1021633023,
1149
+ "google/gemma-3-27b-it": 653469425,
1150
+ "deepseek/deepseek-chat-v3-0324": 649602234,
1151
+ "qwen/qwen3-coder-480b-a35b-07-25": 559988298,
1152
+ "qwen/qwen3-embedding-8b": 536542150,
1153
+ "qwen/qwen3-32b-04-28": 481453659,
1154
+ "nvidia/llama-3.1-nemotron-ultra-253b-v1": 250713503,
1155
+ "qwen/qwen3-30b-a3b-instruct-2507": 223422874,
1156
+ "nousresearch/hermes-4-70b": 201030213,
1157
+ "Others": 1312696431
1158
+ }
1159
+ },
1160
+ {
1161
+ "x": "2025-12-24 00:00:00",
1162
+ "ys": {
1163
+ "qwen/qwen3-embedding-8b": 1640916516,
1164
+ "meta-llama/llama-3.1-8b-instruct": 957515010,
1165
+ "deepseek/deepseek-chat-v3-0324": 641278142,
1166
+ "google/gemma-3-27b-it": 506306414,
1167
+ "qwen/qwen3-coder-480b-a35b-07-25": 478420174,
1168
+ "qwen/qwen3-32b-04-28": 453836715,
1169
+ "nvidia/llama-3.1-nemotron-ultra-253b-v1": 261698636,
1170
+ "deepseek/deepseek-r1-0528": 230505536,
1171
+ "qwen/qwen3-30b-a3b-instruct-2507": 199736293,
1172
+ "Others": 1147941235
1173
+ }
1174
+ },
1175
+ {
1176
+ "x": "2025-12-25 00:00:00",
1177
+ "ys": {
1178
+ "meta-llama/llama-3.1-8b-instruct": 906617761,
1179
+ "qwen/qwen3-embedding-8b": 776091448,
1180
+ "deepseek/deepseek-chat-v3-0324": 532619418,
1181
+ "google/gemma-3-27b-it": 492230768,
1182
+ "qwen/qwen3-coder-480b-a35b-07-25": 332774855,
1183
+ "qwen/qwen3-32b-04-28": 304643173,
1184
+ "nvidia/llama-3.1-nemotron-ultra-253b-v1": 232839941,
1185
+ "qwen/qwen3-30b-a3b-instruct-2507": 189869826,
1186
+ "deepseek/deepseek-r1-0528": 178303686,
1187
+ "Others": 1120274203
1188
+ }
1189
+ },
1190
+ {
1191
+ "x": "2025-12-26 00:00:00",
1192
+ "ys": {
1193
+ "qwen/qwen3-embedding-8b": 1177140001,
1194
+ "meta-llama/llama-3.1-8b-instruct": 1059777047,
1195
+ "deepseek/deepseek-chat-v3-0324": 796801824,
1196
+ "google/gemma-3-27b-it": 569691655,
1197
+ "qwen/qwen3-30b-a3b-thinking-2507": 523698156,
1198
+ "qwen/qwen3-coder-480b-a35b-07-25": 514416575,
1199
+ "qwen/qwen3-32b-04-28": 440852558,
1200
+ "deepseek/deepseek-r1-0528": 312546602,
1201
+ "qwen/qwen3-235b-a22b-07-25": 309427388,
1202
+ "Others": 1376368999
1203
+ }
1204
+ },
1205
+ {
1206
+ "x": "2025-12-27 00:00:00",
1207
+ "ys": {
1208
+ "meta-llama/llama-3.1-8b-instruct": 1015110517,
1209
+ "deepseek/deepseek-chat-v3-0324": 784781532,
1210
+ "qwen/qwen3-embedding-8b": 575480931,
1211
+ "google/gemma-3-27b-it": 491563884,
1212
+ "qwen/qwen3-coder-480b-a35b-07-25": 435147462,
1213
+ "qwen/qwen3-30b-a3b-thinking-2507": 427537593,
1214
+ "qwen/qwen3-235b-a22b-07-25": 374627870,
1215
+ "qwen/qwen3-30b-a3b-instruct-2507": 364560778,
1216
+ "qwen/qwen3-32b-04-28": 314414999,
1217
+ "Others": 1368279723
1218
+ }
1219
+ },
1220
+ {
1221
+ "x": "2025-12-28 00:00:00",
1222
+ "ys": {
1223
+ "meta-llama/llama-3.1-8b-instruct": 2826444170,
1224
+ "deepseek/deepseek-chat-v3-0324": 863230695,
1225
+ "google/gemma-3-27b-it": 565783530,
1226
+ "qwen/qwen3-coder-480b-a35b-07-25": 391920338,
1227
+ "qwen/qwen3-embedding-8b": 358241096,
1228
+ "qwen/qwen3-30b-a3b-thinking-2507": 331290241,
1229
+ "qwen/qwen3-32b-04-28": 329778841,
1230
+ "nvidia/llama-3.1-nemotron-ultra-253b-v1": 235240620,
1231
+ "deepseek/deepseek-r1-0528": 219526546,
1232
+ "Others": 1304745586
1233
+ }
1234
+ },
1235
+ {
1236
+ "x": "2025-12-29 00:00:00",
1237
+ "ys": {
1238
+ "meta-llama/llama-3.1-8b-instruct": 3459430110,
1239
+ "qwen/qwen3-embedding-8b": 1355415393,
1240
+ "qwen/qwen3-30b-a3b-thinking-2507": 675579246,
1241
+ "deepseek/deepseek-chat-v3-0324": 601471740,
1242
+ "google/gemma-3-27b-it": 539899630,
1243
+ "qwen/qwen3-32b-04-28": 457798478,
1244
+ "qwen/qwen3-30b-a3b-instruct-2507": 455730344,
1245
+ "qwen/qwen3-coder-480b-a35b-07-25": 443175555,
1246
+ "meta-llama/llama-3.3-70b-instruct": 328737384,
1247
+ "Others": 1845007343
1248
+ }
1249
+ },
1250
+ {
1251
+ "x": "2025-12-30 00:00:00",
1252
+ "ys": {
1253
+ "meta-llama/llama-3.1-8b-instruct": 3032714645,
1254
+ "qwen/qwen3-embedding-8b": 946985010,
1255
+ "deepseek/deepseek-chat-v3-0324": 642328809,
1256
+ "google/gemma-3-27b-it": 514575919,
1257
+ "qwen/qwen3-coder-480b-a35b-07-25": 491995353,
1258
+ "qwen/qwen2.5-vl-72b-instruct": 475608689,
1259
+ "qwen/qwen3-32b-04-28": 461956031,
1260
+ "qwen/qwen3-30b-a3b-instruct-2507": 395692667,
1261
+ "qwen/qwen3-30b-a3b-thinking-2507": 310181897,
1262
+ "Others": 1774797988
1263
+ }
1264
+ },
1265
+ {
1266
+ "x": "2025-12-31 00:00:00",
1267
+ "ys": {
1268
+ "meta-llama/llama-3.1-8b-instruct": 1735080925,
1269
+ "qwen/qwen3-embedding-8b": 832243960,
1270
+ "qwen/qwen3-coder-30b-a3b-instruct": 573418251,
1271
+ "deepseek/deepseek-chat-v3-0324": 541783914,
1272
+ "google/gemma-3-27b-it": 447045659,
1273
+ "qwen/qwen3-coder-480b-a35b-07-25": 405921893,
1274
+ "meta-llama/llama-3.3-70b-instruct": 360921774,
1275
+ "qwen/qwen3-32b-04-28": 360301510,
1276
+ "qwen/qwen3-30b-a3b-instruct-2507": 273361545,
1277
+ "Others": 1531876953
1278
+ }
1279
+ },
1280
+ {
1281
+ "x": "2026-01-01 00:00:00",
1282
+ "ys": {
1283
+ "meta-llama/llama-3.1-8b-instruct": 2720425988,
1284
+ "deepseek/deepseek-chat-v3-0324": 490561097,
1285
+ "qwen/qwen3-embedding-8b": 409905679,
1286
+ "qwen/qwen3-30b-a3b-thinking-2507": 291383900,
1287
+ "qwen/qwen3-30b-a3b-instruct-2507": 286239390,
1288
+ "qwen/qwen3-coder-480b-a35b-07-25": 282516158,
1289
+ "qwen/qwen3-32b-04-28": 265193536,
1290
+ "nvidia/llama-3.1-nemotron-ultra-253b-v1": 242070185,
1291
+ "qwen/qwen3-coder-30b-a3b-instruct": 228814612,
1292
+ "Others": 1338422865
1293
+ }
1294
+ },
1295
+ {
1296
+ "x": "2026-01-02 00:00:00",
1297
+ "ys": {
1298
+ "meta-llama/llama-3.1-8b-instruct": 1593469260,
1299
+ "deepseek/deepseek-chat-v3-0324": 481687856,
1300
+ "qwen/qwen3-32b-04-28": 472434142,
1301
+ "qwen/qwen3-embedding-8b": 434487888,
1302
+ "google/gemma-3-27b-it": 391347140,
1303
+ "qwen/qwen3-30b-a3b-thinking-2507": 363571488,
1304
+ "meta-llama/llama-3.3-70b-instruct": 314452226,
1305
+ "qwen/qwen3-coder-480b-a35b-07-25": 296296141,
1306
+ "qwen/qwen3-30b-a3b-instruct-2507": 267430463,
1307
+ "Others": 1486624082
1308
+ }
1309
+ },
1310
+ {
1311
+ "x": "2026-01-03 00:00:00",
1312
+ "ys": {
1313
+ "meta-llama/llama-3.1-8b-instruct": 1104950284,
1314
+ "deepseek/deepseek-chat-v3-0324": 547507344,
1315
+ "google/gemma-3-27b-it": 501098958,
1316
+ "qwen/qwen3-embedding-8b": 496055553,
1317
+ "qwen/qwen3-coder-480b-a35b-07-25": 388295615,
1318
+ "qwen/qwen3-30b-a3b-instruct-2507": 299644770,
1319
+ "qwen/qwen3-32b-04-28": 272742238,
1320
+ "nousresearch/hermes-4-70b": 253857166,
1321
+ "nvidia/llama-3.1-nemotron-ultra-253b-v1": 253295153,
1322
+ "Others": 1247719897
1323
+ }
1324
+ },
1325
+ {
1326
+ "x": "2026-01-04 00:00:00",
1327
+ "ys": {
1328
+ "meta-llama/llama-3.1-8b-instruct": 1717022096,
1329
+ "qwen/qwen3-embedding-8b": 669141335,
1330
+ "qwen/qwen3-32b-04-28": 540910943,
1331
+ "deepseek/deepseek-chat-v3-0324": 534045051,
1332
+ "google/gemma-3-27b-it": 495077834,
1333
+ "qwen/qwen3-coder-480b-a35b-07-25": 407929932,
1334
+ "qwen/qwen3-30b-a3b-instruct-2507": 342730947,
1335
+ "nvidia/llama-3.1-nemotron-ultra-253b-v1": 268336239,
1336
+ "meta-llama/llama-3.3-70b-instruct": 263365542,
1337
+ "Others": 1418851520
1338
+ }
1339
+ },
1340
+ {
1341
+ "x": "2026-01-05 00:00:00",
1342
+ "ys": {
1343
+ "meta-llama/llama-3.1-8b-instruct": 1207621657,
1344
+ "qwen/qwen3-coder-480b-a35b-07-25": 626841015,
1345
+ "qwen/qwen3-embedding-8b": 536484822,
1346
+ "deepseek/deepseek-chat-v3-0324": 494837465,
1347
+ "qwen/qwen3-32b-04-28": 479306565,
1348
+ "google/gemma-3-27b-it": 445039206,
1349
+ "qwen/qwen3-30b-a3b-instruct-2507": 345200298,
1350
+ "qwen/qwen2.5-vl-72b-instruct": 271959876,
1351
+ "meta-llama/llama-3.3-70b-instruct": 271090281,
1352
+ "Others": 1457787361
1353
+ }
1354
+ }
1355
+ ],
1356
+ "fetched_at": "2026-01-06T00:09:40.423233",
1357
+ "success": true
1358
+ }
data/providers/novita.json ADDED
@@ -0,0 +1,1358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "provider": "novita",
3
+ "url": "https://openrouter.ai/provider/novita",
4
+ "data": [
5
+ {
6
+ "x": "2025-10-08 00:00:00",
7
+ "ys": {
8
+ "deepseek/deepseek-chat-v3-0324": 4799710173,
9
+ "openai/gpt-oss-20b": 2909980923,
10
+ "deepseek/deepseek-v3.2-exp": 2833926399,
11
+ "deepseek/deepseek-chat-v3.1": 1155154689,
12
+ "qwen/qwen3-coder-480b-a35b-07-25": 1081573680,
13
+ "deepseek/deepseek-v3.1-terminus": 596298564,
14
+ "qwen/qwen3-vl-235b-a22b-instruct": 521571305,
15
+ "z-ai/glm-4.6": 498195112,
16
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 309353492,
17
+ "Others": 2933460806
18
+ }
19
+ },
20
+ {
21
+ "x": "2025-10-09 00:00:00",
22
+ "ys": {
23
+ "deepseek/deepseek-v3.2-exp": 4633689381,
24
+ "deepseek/deepseek-chat-v3-0324": 4585070337,
25
+ "openai/gpt-oss-20b": 3030221548,
26
+ "qwen/qwen3-coder-480b-a35b-07-25": 1081871550,
27
+ "deepseek/deepseek-chat-v3.1": 1056271572,
28
+ "meta-llama/llama-3.3-70b-instruct": 761979432,
29
+ "deepseek/deepseek-v3.1-terminus": 527494267,
30
+ "qwen/qwen3-vl-235b-a22b-instruct": 378092290,
31
+ "qwen/qwen3-235b-a22b-07-25": 366243989,
32
+ "Others": 2893502239
33
+ }
34
+ },
35
+ {
36
+ "x": "2025-10-10 00:00:00",
37
+ "ys": {
38
+ "deepseek/deepseek-chat-v3-0324": 4580841574,
39
+ "deepseek/deepseek-v3.2-exp": 4232087892,
40
+ "openai/gpt-oss-20b": 2198578809,
41
+ "qwen/qwen3-vl-235b-a22b-instruct": 1179664231,
42
+ "qwen/qwen3-coder-480b-a35b-07-25": 1077917645,
43
+ "deepseek/deepseek-chat-v3": 888192006,
44
+ "deepseek/deepseek-chat-v3.1": 866701959,
45
+ "meta-llama/llama-3.3-70b-instruct": 741853546,
46
+ "deepseek/deepseek-v3.1-terminus": 609942964,
47
+ "Others": 3559351175
48
+ }
49
+ },
50
+ {
51
+ "x": "2025-10-11 00:00:00",
52
+ "ys": {
53
+ "deepseek/deepseek-chat-v3-0324": 4438006439,
54
+ "z-ai/glm-4.6": 2382062257,
55
+ "qwen/qwen3-vl-235b-a22b-instruct": 2371449003,
56
+ "openai/gpt-oss-20b": 1501029238,
57
+ "qwen/qwen3-coder-480b-a35b-07-25": 1189064303,
58
+ "deepseek/deepseek-v3.1-terminus": 715268821,
59
+ "deepseek/deepseek-chat-v3.1": 637885486,
60
+ "meta-llama/llama-3.3-70b-instruct": 623793465,
61
+ "deepseek/deepseek-v3.2-exp": 492045740,
62
+ "Others": 3299811244
63
+ }
64
+ },
65
+ {
66
+ "x": "2025-10-12 00:00:00",
67
+ "ys": {
68
+ "deepseek/deepseek-chat-v3-0324": 4746437626,
69
+ "openai/gpt-oss-20b": 2861959697,
70
+ "qwen/qwen3-vl-235b-a22b-instruct": 2408802727,
71
+ "z-ai/glm-4.6": 2276079164,
72
+ "qwen/qwen3-coder-30b-a3b-instruct": 1256069173,
73
+ "qwen/qwen3-coder-480b-a35b-07-25": 1082001301,
74
+ "deepseek/deepseek-v3.1-terminus": 786603698,
75
+ "deepseek/deepseek-chat-v3.1": 709906868,
76
+ "deepseek/deepseek-v3.2-exp": 630654729,
77
+ "Others": 2904890381
78
+ }
79
+ },
80
+ {
81
+ "x": "2025-10-13 00:00:00",
82
+ "ys": {
83
+ "deepseek/deepseek-chat-v3-0324": 4796684329,
84
+ "openai/gpt-oss-20b": 2986439145,
85
+ "qwen/qwen3-vl-235b-a22b-instruct": 2440063255,
86
+ "z-ai/glm-4.6": 2011666424,
87
+ "qwen/qwen3-coder-30b-a3b-instruct": 1703033035,
88
+ "qwen/qwen3-coder-480b-a35b-07-25": 1069047967,
89
+ "deepseek/deepseek-chat-v3.1": 885581517,
90
+ "deepseek/deepseek-v3.2-exp": 801684688,
91
+ "deepseek/deepseek-v3.1-terminus": 758400593,
92
+ "Others": 3680650036
93
+ }
94
+ },
95
+ {
96
+ "x": "2025-10-14 00:00:00",
97
+ "ys": {
98
+ "deepseek/deepseek-chat-v3-0324": 4708169493,
99
+ "z-ai/glm-4.6": 2476828247,
100
+ "qwen/qwen3-vl-235b-a22b-instruct": 2402326318,
101
+ "deepseek/deepseek-v3.2-exp": 1538019547,
102
+ "openai/gpt-oss-20b": 1411963380,
103
+ "qwen/qwen3-coder-480b-a35b-07-25": 1149629733,
104
+ "deepseek/deepseek-chat-v3.1": 1034452286,
105
+ "deepseek/deepseek-v3.1-terminus": 639903686,
106
+ "openai/gpt-oss-120b": 495653710,
107
+ "Others": 4288180374
108
+ }
109
+ },
110
+ {
111
+ "x": "2025-10-15 00:00:00",
112
+ "ys": {
113
+ "deepseek/deepseek-chat-v3-0324": 4574195890,
114
+ "qwen/qwen3-vl-235b-a22b-instruct": 2014085342,
115
+ "z-ai/glm-4.6": 1867661560,
116
+ "deepseek/deepseek-chat-v3.1": 1149923877,
117
+ "qwen/qwen3-coder-480b-a35b-07-25": 1023221994,
118
+ "deepseek/deepseek-v3.1-terminus": 782519376,
119
+ "deepseek/deepseek-v3.2-exp": 626304748,
120
+ "qwen/qwen3-235b-a22b-07-25": 609468587,
121
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 463363216,
122
+ "Others": 3589024600
123
+ }
124
+ },
125
+ {
126
+ "x": "2025-10-16 00:00:00",
127
+ "ys": {
128
+ "deepseek/deepseek-chat-v3-0324": 5543771616,
129
+ "z-ai/glm-4.6": 2552001806,
130
+ "qwen/qwen3-vl-235b-a22b-instruct": 1234893187,
131
+ "deepseek/deepseek-chat-v3.1": 1209923725,
132
+ "qwen/qwen3-235b-a22b-07-25": 1180748093,
133
+ "qwen/qwen3-coder-480b-a35b-07-25": 954936741,
134
+ "deepseek/deepseek-v3.1-terminus": 653048685,
135
+ "deepseek/deepseek-v3.2-exp": 613486215,
136
+ "qwen/qwen3-235b-a22b-thinking-2507": 496627756,
137
+ "Others": 4506485514
138
+ }
139
+ },
140
+ {
141
+ "x": "2025-10-17 00:00:00",
142
+ "ys": {
143
+ "deepseek/deepseek-chat-v3-0324": 7461028861,
144
+ "z-ai/glm-4.6": 1881509563,
145
+ "qwen/qwen3-vl-235b-a22b-instruct": 1664648280,
146
+ "deepseek/deepseek-chat-v3.1": 1068545689,
147
+ "qwen/qwen3-235b-a22b-07-25": 904679792,
148
+ "qwen/qwen3-coder-480b-a35b-07-25": 893562953,
149
+ "deepseek/deepseek-v3.2-exp": 617894036,
150
+ "deepseek/deepseek-v3.1-terminus": 568352366,
151
+ "moonshotai/kimi-k2-0905": 563260075,
152
+ "Others": 4017327391
153
+ }
154
+ },
155
+ {
156
+ "x": "2025-10-18 00:00:00",
157
+ "ys": {
158
+ "deepseek/deepseek-chat-v3-0324": 7963581680,
159
+ "qwen/qwen3-vl-235b-a22b-instruct": 1971723722,
160
+ "deepseek/deepseek-v3.2-exp": 1756737642,
161
+ "z-ai/glm-4.6": 1631280744,
162
+ "deepseek/deepseek-chat-v3.1": 1600048982,
163
+ "qwen/qwen3-235b-a22b-07-25": 1163009834,
164
+ "qwen/qwen3-coder-480b-a35b-07-25": 745677026,
165
+ "deepseek/deepseek-v3.1-terminus": 466895863,
166
+ "openai/gpt-oss-120b": 422900193,
167
+ "Others": 2856470964
168
+ }
169
+ },
170
+ {
171
+ "x": "2025-10-19 00:00:00",
172
+ "ys": {
173
+ "deepseek/deepseek-chat-v3-0324": 8546718588,
174
+ "qwen/qwen3-vl-235b-a22b-instruct": 2073504885,
175
+ "deepseek/deepseek-chat-v3.1": 1551231644,
176
+ "z-ai/glm-4.6": 1441155836,
177
+ "deepseek/deepseek-v3.2-exp": 849241817,
178
+ "qwen/qwen3-coder-480b-a35b-07-25": 785589721,
179
+ "deepseek/deepseek-v3.1-terminus": 535490127,
180
+ "qwen/qwen3-235b-a22b-07-25": 460571288,
181
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 417931667,
182
+ "Others": 3089311486
183
+ }
184
+ },
185
+ {
186
+ "x": "2025-10-20 00:00:00",
187
+ "ys": {
188
+ "deepseek/deepseek-chat-v3-0324": 8650452687,
189
+ "z-ai/glm-4.6": 2045814303,
190
+ "qwen/qwen3-vl-235b-a22b-instruct": 2032968035,
191
+ "deepseek/deepseek-chat-v3.1": 1885387831,
192
+ "openai/gpt-oss-120b": 1413585598,
193
+ "deepseek/deepseek-v3.2-exp": 1290294169,
194
+ "qwen/qwen3-235b-a22b-07-25": 1030222053,
195
+ "qwen/qwen3-coder-480b-a35b-07-25": 972545386,
196
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 613015361,
197
+ "Others": 3838745323
198
+ }
199
+ },
200
+ {
201
+ "x": "2025-10-21 00:00:00",
202
+ "ys": {
203
+ "deepseek/deepseek-chat-v3-0324": 8760065572,
204
+ "z-ai/glm-4.6": 1784323798,
205
+ "qwen/qwen3-vl-235b-a22b-instruct": 1762914250,
206
+ "qwen/qwen3-235b-a22b-07-25": 1597996663,
207
+ "deepseek/deepseek-chat-v3.1": 1442801167,
208
+ "z-ai/glm-4.5-air": 1283642570,
209
+ "openai/gpt-oss-120b": 1197775867,
210
+ "deepseek/deepseek-v3.1-terminus": 1190091937,
211
+ "qwen/qwen3-coder-480b-a35b-07-25": 1022311746,
212
+ "Others": 4511631820
213
+ }
214
+ },
215
+ {
216
+ "x": "2025-10-22 00:00:00",
217
+ "ys": {
218
+ "deepseek/deepseek-chat-v3-0324": 8111393910,
219
+ "deepseek/deepseek-chat-v3.1": 1768898338,
220
+ "qwen/qwen3-vl-235b-a22b-instruct": 1599382300,
221
+ "z-ai/glm-4.6": 1576854866,
222
+ "deepseek/deepseek-v3.1-terminus": 1213817101,
223
+ "deepseek/deepseek-chat-v3": 1069432558,
224
+ "z-ai/glm-4.5-air": 984939783,
225
+ "qwen/qwen3-coder-480b-a35b-07-25": 983769516,
226
+ "openai/gpt-oss-120b": 980857611,
227
+ "Others": 5455036958
228
+ }
229
+ },
230
+ {
231
+ "x": "2025-10-23 00:00:00",
232
+ "ys": {
233
+ "deepseek/deepseek-chat-v3-0324": 8206538517,
234
+ "qwen/qwen3-coder-480b-a35b-07-25": 3828327797,
235
+ "z-ai/glm-4.6": 3502500102,
236
+ "deepseek/deepseek-v3.2-exp": 1785931233,
237
+ "deepseek/deepseek-chat-v3.1": 1575630899,
238
+ "qwen/qwen3-vl-235b-a22b-instruct": 1320397107,
239
+ "qwen/qwen3-235b-a22b-07-25": 1125155020,
240
+ "z-ai/glm-4.5-air": 1116909033,
241
+ "openai/gpt-oss-120b": 886217117,
242
+ "Others": 4776625997
243
+ }
244
+ },
245
+ {
246
+ "x": "2025-10-24 00:00:00",
247
+ "ys": {
248
+ "deepseek/deepseek-chat-v3-0324": 8022498648,
249
+ "deepseek/deepseek-v3.2-exp": 2619650900,
250
+ "z-ai/glm-4.6": 2591885755,
251
+ "qwen/qwen3-vl-235b-a22b-instruct": 1604957922,
252
+ "deepseek/deepseek-chat-v3.1": 1498011206,
253
+ "z-ai/glm-4.5-air": 1439143591,
254
+ "qwen/qwen3-235b-a22b-07-25": 1245046276,
255
+ "qwen/qwen3-coder-480b-a35b-07-25": 1096237863,
256
+ "openai/gpt-oss-120b": 786564723,
257
+ "Others": 5516219427
258
+ }
259
+ },
260
+ {
261
+ "x": "2025-10-25 00:00:00",
262
+ "ys": {
263
+ "deepseek/deepseek-chat-v3-0324": 7852154495,
264
+ "z-ai/glm-4.6": 2184037141,
265
+ "qwen/qwen3-vl-235b-a22b-instruct": 2146517178,
266
+ "deepseek/deepseek-v3.2-exp": 1571569697,
267
+ "deepseek/deepseek-chat-v3.1": 1472817939,
268
+ "z-ai/glm-4.5-air": 1267454732,
269
+ "qwen/qwen3-235b-a22b-07-25": 1191324503,
270
+ "qwen/qwen3-coder-480b-a35b-07-25": 873630072,
271
+ "openai/gpt-oss-120b": 714148106,
272
+ "Others": 4382205886
273
+ }
274
+ },
275
+ {
276
+ "x": "2025-10-26 00:00:00",
277
+ "ys": {
278
+ "deepseek/deepseek-chat-v3-0324": 9658954286,
279
+ "qwen/qwen3-vl-235b-a22b-instruct": 3041759644,
280
+ "z-ai/glm-4.6": 2022980722,
281
+ "deepseek/deepseek-chat-v3.1": 1528733784,
282
+ "deepseek/deepseek-v3.2-exp": 1312065261,
283
+ "qwen/qwen3-235b-a22b-07-25": 1167244321,
284
+ "z-ai/glm-4.5-air": 1012796427,
285
+ "openai/gpt-oss-120b": 642855975,
286
+ "deepseek/deepseek-v3.1-terminus": 560784019,
287
+ "Others": 4268536397
288
+ }
289
+ },
290
+ {
291
+ "x": "2025-10-27 00:00:00",
292
+ "ys": {
293
+ "deepseek/deepseek-chat-v3-0324": 8737038103,
294
+ "z-ai/glm-4.6": 2649026646,
295
+ "qwen/qwen3-vl-235b-a22b-instruct": 2404678721,
296
+ "deepseek/deepseek-chat-v3.1": 1781215367,
297
+ "meta-llama/llama-3.1-8b-instruct": 1684498372,
298
+ "z-ai/glm-4.5-air": 1332076820,
299
+ "qwen/qwen3-235b-a22b-07-25": 1053114884,
300
+ "deepseek/deepseek-v3.2-exp": 971035586,
301
+ "qwen/qwen3-coder-480b-a35b-07-25": 857676886,
302
+ "Others": 5772614738
303
+ }
304
+ },
305
+ {
306
+ "x": "2025-10-28 00:00:00",
307
+ "ys": {
308
+ "deepseek/deepseek-chat-v3-0324": 8011043812,
309
+ "z-ai/glm-4.6": 3709132624,
310
+ "deepseek/deepseek-chat-v3.1": 1682908412,
311
+ "qwen/qwen3-vl-235b-a22b-instruct": 1646517185,
312
+ "qwen/qwen3-coder-480b-a35b-07-25": 1472498534,
313
+ "z-ai/glm-4.5-air": 1361869699,
314
+ "qwen/qwen3-235b-a22b-07-25": 959348936,
315
+ "openai/gpt-oss-120b": 930287828,
316
+ "deepseek/deepseek-v3.2-exp": 898056533,
317
+ "Others": 5249253720
318
+ }
319
+ },
320
+ {
321
+ "x": "2025-10-29 00:00:00",
322
+ "ys": {
323
+ "deepseek/deepseek-chat-v3-0324": 8220918134,
324
+ "z-ai/glm-4.6": 5148980742,
325
+ "qwen/qwen3-coder-480b-a35b-07-25": 3663284701,
326
+ "deepseek/deepseek-chat-v3": 1889386649,
327
+ "deepseek/deepseek-v3.1-terminus": 1717301342,
328
+ "deepseek/deepseek-chat-v3.1": 1549797963,
329
+ "z-ai/glm-4.5-air": 1350923296,
330
+ "qwen/qwen3-235b-a22b-07-25": 1231755108,
331
+ "openai/gpt-oss-120b": 1094910691,
332
+ "Others": 7278290410
333
+ }
334
+ },
335
+ {
336
+ "x": "2025-10-30 00:00:00",
337
+ "ys": {
338
+ "deepseek/deepseek-chat-v3-0324": 8949085767,
339
+ "qwen/qwen3-coder-480b-a35b-07-25": 4647616331,
340
+ "z-ai/glm-4.6": 3534472136,
341
+ "deepseek/deepseek-chat-v3": 2294973014,
342
+ "deepseek/deepseek-chat-v3.1": 1783458387,
343
+ "deepseek/deepseek-v3.2-exp": 1479464302,
344
+ "qwen/qwen3-vl-235b-a22b-instruct": 1251921558,
345
+ "google/gemma-3-12b-it": 1241070677,
346
+ "z-ai/glm-4.5": 1234009650,
347
+ "Others": 9343782791
348
+ }
349
+ },
350
+ {
351
+ "x": "2025-10-31 00:00:00",
352
+ "ys": {
353
+ "deepseek/deepseek-chat-v3-0324": 8623285798,
354
+ "qwen/qwen3-coder-480b-a35b-07-25": 3662127623,
355
+ "z-ai/glm-4.6": 2476276572,
356
+ "deepseek/deepseek-chat-v3.1": 1536774304,
357
+ "deepseek/deepseek-v3.2-exp": 1488862081,
358
+ "qwen/qwen3-235b-a22b-07-25": 1020133804,
359
+ "deepseek/deepseek-chat-v3": 939257659,
360
+ "z-ai/glm-4.5-air": 847039994,
361
+ "google/gemma-3-27b-it": 670490379,
362
+ "Others": 6311803924
363
+ }
364
+ },
365
+ {
366
+ "x": "2025-11-01 00:00:00",
367
+ "ys": {
368
+ "deepseek/deepseek-chat-v3-0324": 8975062221,
369
+ "google/gemma-3-12b-it": 2537775936,
370
+ "z-ai/glm-4.6": 1566774875,
371
+ "deepseek/deepseek-chat-v3.1": 1193074362,
372
+ "z-ai/glm-4.5-air": 1189849037,
373
+ "qwen/qwen3-vl-235b-a22b-instruct": 1184881696,
374
+ "deepseek/deepseek-v3.2-exp": 985693643,
375
+ "qwen/qwen3-235b-a22b-07-25": 811176158,
376
+ "z-ai/glm-4.6:exacto": 495001163,
377
+ "Others": 4563002416
378
+ }
379
+ },
380
+ {
381
+ "x": "2025-11-02 00:00:00",
382
+ "ys": {
383
+ "deepseek/deepseek-chat-v3-0324": 9402333971,
384
+ "qwen/qwen3-vl-235b-a22b-instruct": 2727676378,
385
+ "deepseek/deepseek-chat-v3": 1833935750,
386
+ "z-ai/glm-4.6": 1578703039,
387
+ "z-ai/glm-4.5-air": 1373112084,
388
+ "deepseek/deepseek-v3.2-exp": 1155750801,
389
+ "deepseek/deepseek-chat-v3.1": 1150263523,
390
+ "z-ai/glm-4.6:exacto": 858719077,
391
+ "qwen/qwen3-235b-a22b-07-25": 769422927,
392
+ "Others": 5343741333
393
+ }
394
+ },
395
+ {
396
+ "x": "2025-11-03 00:00:00",
397
+ "ys": {
398
+ "deepseek/deepseek-chat-v3-0324": 9273872273,
399
+ "deepseek/deepseek-chat-v3": 5207944030,
400
+ "qwen/qwen3-vl-235b-a22b-instruct": 2773527902,
401
+ "z-ai/glm-4.6": 2698013537,
402
+ "qwen/qwen3-coder-480b-a35b-07-25": 1436409039,
403
+ "deepseek/deepseek-v3.2-exp": 1294404411,
404
+ "deepseek/deepseek-chat-v3.1": 1198964205,
405
+ "z-ai/glm-4.5-air": 863830469,
406
+ "z-ai/glm-4.6:exacto": 747543389,
407
+ "Others": 6655188660
408
+ }
409
+ },
410
+ {
411
+ "x": "2025-11-04 00:00:00",
412
+ "ys": {
413
+ "deepseek/deepseek-chat-v3-0324": 8724767510,
414
+ "qwen/qwen3-vl-235b-a22b-instruct": 2835323145,
415
+ "deepseek/deepseek-v3.2-exp": 2655316413,
416
+ "qwen/qwen3-coder-480b-a35b-07-25": 2644652118,
417
+ "z-ai/glm-4.6": 2511266113,
418
+ "google/gemma-3-12b-it": 1988209541,
419
+ "deepseek/deepseek-chat-v3.1": 1174496848,
420
+ "z-ai/glm-4.5-air": 1100073751,
421
+ "deepseek/deepseek-chat-v3": 756915045,
422
+ "Others": 6387964304
423
+ }
424
+ },
425
+ {
426
+ "x": "2025-11-05 00:00:00",
427
+ "ys": {
428
+ "deepseek/deepseek-chat-v3-0324": 8296895318,
429
+ "z-ai/glm-4.6": 3308074500,
430
+ "qwen/qwen3-coder-480b-a35b-07-25": 2885100695,
431
+ "qwen/qwen3-vl-235b-a22b-instruct": 1747110629,
432
+ "deepseek/deepseek-chat-v3.1": 1411734957,
433
+ "deepseek/deepseek-v3.2-exp": 1214611053,
434
+ "google/gemma-3-12b-it": 987859096,
435
+ "z-ai/glm-4.5-air": 674484121,
436
+ "google/gemma-3-27b-it": 658538944,
437
+ "Others": 6710843850
438
+ }
439
+ },
440
+ {
441
+ "x": "2025-11-06 00:00:00",
442
+ "ys": {
443
+ "deepseek/deepseek-chat-v3-0324": 7487496536,
444
+ "deepseek/deepseek-v3.2-exp": 3069199084,
445
+ "z-ai/glm-4.6": 2952313494,
446
+ "qwen/qwen3-coder-480b-a35b-07-25": 1857860039,
447
+ "qwen/qwen3-vl-235b-a22b-instruct": 1669504311,
448
+ "deepseek/deepseek-chat-v3.1": 1652810806,
449
+ "deepseek/deepseek-chat-v3": 1314350796,
450
+ "google/gemma-3-27b-it": 1033753729,
451
+ "deepseek/deepseek-v3.1-terminus": 871624493,
452
+ "Others": 7099253964
453
+ }
454
+ },
455
+ {
456
+ "x": "2025-11-07 00:00:00",
457
+ "ys": {
458
+ "deepseek/deepseek-chat-v3-0324": 8637636675,
459
+ "deepseek/deepseek-v3.2-exp": 5592544622,
460
+ "z-ai/glm-4.6": 3028813283,
461
+ "qwen/qwen3-vl-235b-a22b-instruct": 2371639231,
462
+ "deepseek/deepseek-v3.1-terminus": 1707255616,
463
+ "deepseek/deepseek-chat-v3.1": 1405193492,
464
+ "qwen/qwen3-coder-480b-a35b-07-25": 1346221473,
465
+ "google/gemma-3-27b-it": 1158289732,
466
+ "minimax/minimax-m2": 943965250,
467
+ "Others": 6907557604
468
+ }
469
+ },
470
+ {
471
+ "x": "2025-11-08 00:00:00",
472
+ "ys": {
473
+ "deepseek/deepseek-chat-v3-0324": 9522907823,
474
+ "deepseek/deepseek-v3.1-terminus": 5908382054,
475
+ "deepseek/deepseek-v3.2-exp": 2428548087,
476
+ "qwen/qwen3-vl-235b-a22b-instruct": 1884664245,
477
+ "z-ai/glm-4.6": 1811134574,
478
+ "google/gemma-3-27b-it": 1421216497,
479
+ "deepseek/deepseek-chat-v3.1": 1239529494,
480
+ "z-ai/glm-4.5-air": 992096277,
481
+ "qwen/qwen3-235b-a22b-07-25": 904487314,
482
+ "Others": 6238903177
483
+ }
484
+ },
485
+ {
486
+ "x": "2025-11-09 00:00:00",
487
+ "ys": {
488
+ "deepseek/deepseek-chat-v3-0324": 9655882256,
489
+ "qwen/qwen3-vl-235b-a22b-instruct": 1849898248,
490
+ "z-ai/glm-4.6": 1678242720,
491
+ "deepseek/deepseek-chat-v3.1": 1403411183,
492
+ "deepseek/deepseek-v3.1-terminus": 1314608344,
493
+ "google/gemma-3-27b-it": 1050121544,
494
+ "qwen/qwen3-235b-a22b-07-25": 1043027627,
495
+ "z-ai/glm-4.5-air": 1039210949,
496
+ "qwen/qwen-2.5-7b-instruct": 1004945808,
497
+ "Others": 7035140058
498
+ }
499
+ },
500
+ {
501
+ "x": "2025-11-10 00:00:00",
502
+ "ys": {
503
+ "deepseek/deepseek-chat-v3-0324": 9116067250,
504
+ "z-ai/glm-4.6": 2158919720,
505
+ "deepseek/deepseek-chat-v3.1": 2134229841,
506
+ "kwaipilot/kat-coder-pro-v1:free": 1521487349,
507
+ "minimax/minimax-m2": 1518866198,
508
+ "deepseek/deepseek-v3.1-terminus": 1331569056,
509
+ "qwen/qwen3-235b-a22b-07-25": 989868330,
510
+ "qwen/qwen3-coder-480b-a35b-07-25": 922140527,
511
+ "z-ai/glm-4.5-air": 909419183,
512
+ "Others": 8884747366
513
+ }
514
+ },
515
+ {
516
+ "x": "2025-11-11 00:00:00",
517
+ "ys": {
518
+ "deepseek/deepseek-chat-v3-0324": 8690467876,
519
+ "kwaipilot/kat-coder-pro-v1:free": 4049181709,
520
+ "z-ai/glm-4.6": 2499823520,
521
+ "deepseek/deepseek-chat-v3.1": 1939806634,
522
+ "qwen/qwen3-vl-235b-a22b-instruct": 1505853987,
523
+ "qwen/qwen3-coder-480b-a35b-07-25": 1160253947,
524
+ "deepseek/deepseek-v3.1-terminus": 1064150154,
525
+ "google/gemma-3-27b-it": 1000604101,
526
+ "deepseek/deepseek-v3.2-exp": 941390686,
527
+ "Others": 9428480999
528
+ }
529
+ },
530
+ {
531
+ "x": "2025-11-12 00:00:00",
532
+ "ys": {
533
+ "deepseek/deepseek-chat-v3-0324": 9479710537,
534
+ "kwaipilot/kat-coder-pro-v1:free": 5287001324,
535
+ "qwen/qwen3-vl-235b-a22b-instruct": 5052519150,
536
+ "z-ai/glm-4.6": 2106685824,
537
+ "deepseek/deepseek-chat-v3.1": 1800571615,
538
+ "deepseek/deepseek-v3.1-terminus": 1648010552,
539
+ "z-ai/glm-4.5-air": 1584541369,
540
+ "qwen/qwen3-coder-480b-a35b-07-25": 1340868811,
541
+ "mistralai/mistral-nemo": 1314535927,
542
+ "Others": 10848456963
543
+ }
544
+ },
545
+ {
546
+ "x": "2025-11-13 00:00:00",
547
+ "ys": {
548
+ "deepseek/deepseek-chat-v3-0324": 8996572303,
549
+ "kwaipilot/kat-coder-pro-v1:free": 5447907300,
550
+ "qwen/qwen3-vl-235b-a22b-instruct": 3951258133,
551
+ "z-ai/glm-4.6": 2110364528,
552
+ "deepseek/deepseek-chat-v3.1": 1615514969,
553
+ "z-ai/glm-4.5-air": 1453671817,
554
+ "mistralai/mistral-nemo": 1359737144,
555
+ "deepseek/deepseek-v3.1-terminus": 1314587069,
556
+ "z-ai/glm-4.5": 1093543093,
557
+ "Others": 11457626903
558
+ }
559
+ },
560
+ {
561
+ "x": "2025-11-14 00:00:00",
562
+ "ys": {
563
+ "deepseek/deepseek-chat-v3-0324": 8020494023,
564
+ "kwaipilot/kat-coder-pro-v1:free": 5487918952,
565
+ "qwen/qwen3-vl-235b-a22b-instruct": 3300292430,
566
+ "moonshotai/kimi-k2-thinking-20251106": 2889654905,
567
+ "z-ai/glm-4.6": 2050403862,
568
+ "deepseek/deepseek-chat-v3.1": 1509134542,
569
+ "deepseek/deepseek-v3.1-terminus": 1320086951,
570
+ "z-ai/glm-4.5-air": 1279533908,
571
+ "mistralai/mistral-nemo": 1243066202,
572
+ "Others": 10725764983
573
+ }
574
+ },
575
+ {
576
+ "x": "2025-11-15 00:00:00",
577
+ "ys": {
578
+ "deepseek/deepseek-chat-v3-0324": 8087350804,
579
+ "kwaipilot/kat-coder-pro-v1:free": 5028191467,
580
+ "z-ai/glm-4.6": 2058338997,
581
+ "deepseek/deepseek-chat-v3.1": 1806294671,
582
+ "z-ai/glm-4.5-air": 1345230009,
583
+ "mistralai/mistral-nemo": 1345048764,
584
+ "qwen/qwen3-coder-480b-a35b-07-25": 1043252117,
585
+ "qwen/qwen3-vl-235b-a22b-instruct": 939929468,
586
+ "deepseek/deepseek-v3.1-terminus": 886667991,
587
+ "Others": 7826397819
588
+ }
589
+ },
590
+ {
591
+ "x": "2025-11-16 00:00:00",
592
+ "ys": {
593
+ "deepseek/deepseek-chat-v3-0324": 8559890004,
594
+ "kwaipilot/kat-coder-pro-v1:free": 4649085498,
595
+ "deepseek/deepseek-chat-v3.1": 1848859267,
596
+ "z-ai/glm-4.6": 1833481416,
597
+ "qwen/qwen3-coder-480b-a35b-07-25": 1693245464,
598
+ "z-ai/glm-4.5-air": 1465066131,
599
+ "qwen/qwen3-vl-235b-a22b-instruct": 1438490716,
600
+ "z-ai/glm-4.6:exacto": 1015129426,
601
+ "deepseek/deepseek-v3.2-exp": 923966699,
602
+ "Others": 7043026970
603
+ }
604
+ },
605
+ {
606
+ "x": "2025-11-17 00:00:00",
607
+ "ys": {
608
+ "deepseek/deepseek-chat-v3-0324": 9093472307,
609
+ "kwaipilot/kat-coder-pro-v1:free": 4838015177,
610
+ "z-ai/glm-4.6": 2295913120,
611
+ "deepseek/deepseek-chat-v3.1": 2050595055,
612
+ "z-ai/glm-4.5-air": 1388479639,
613
+ "mistralai/mistral-nemo": 1350138819,
614
+ "deepseek/deepseek-v3.2-exp": 1115632226,
615
+ "z-ai/glm-4.6:exacto": 1041787436,
616
+ "qwen/qwen3-235b-a22b-07-25": 990967487,
617
+ "Others": 9324855832
618
+ }
619
+ },
620
+ {
621
+ "x": "2025-11-18 00:00:00",
622
+ "ys": {
623
+ "deepseek/deepseek-chat-v3-0324": 9908143272,
624
+ "kwaipilot/kat-coder-pro-v1:free": 6842709916,
625
+ "z-ai/glm-4.6": 2276562336,
626
+ "deepseek/deepseek-chat-v3.1": 2206190518,
627
+ "z-ai/glm-4.5-air": 1210078058,
628
+ "qwen/qwen3-coder-480b-a35b-07-25": 1070663834,
629
+ "mistralai/mistral-nemo": 1048176133,
630
+ "qwen/qwen3-235b-a22b-07-25": 938769411,
631
+ "deepseek/deepseek-v3.2-exp": 772335576,
632
+ "Others": 8420503853
633
+ }
634
+ },
635
+ {
636
+ "x": "2025-11-19 00:00:00",
637
+ "ys": {
638
+ "deepseek/deepseek-chat-v3-0324": 9013181145,
639
+ "kwaipilot/kat-coder-pro-v1:free": 7157696571,
640
+ "qwen/qwen3-coder-480b-a35b-07-25": 5298758009,
641
+ "deepseek/deepseek-chat-v3.1": 2209595217,
642
+ "qwen/qwen3-vl-235b-a22b-instruct": 2139694870,
643
+ "z-ai/glm-4.6": 1916022259,
644
+ "mistralai/mistral-nemo": 1527991373,
645
+ "deepseek/deepseek-chat-v3": 1215220903,
646
+ "z-ai/glm-4.5-air": 1109183711,
647
+ "Others": 9982481645
648
+ }
649
+ },
650
+ {
651
+ "x": "2025-11-20 00:00:00",
652
+ "ys": {
653
+ "deepseek/deepseek-chat-v3-0324": 8298715387,
654
+ "kwaipilot/kat-coder-pro-v1:free": 7726321693,
655
+ "qwen/qwen3-vl-235b-a22b-instruct": 2031128638,
656
+ "z-ai/glm-4.6": 1956817859,
657
+ "deepseek/deepseek-chat-v3.1": 1871904556,
658
+ "deepseek/deepseek-v3.2-exp": 1021728763,
659
+ "deepseek/deepseek-chat-v3": 919329269,
660
+ "qwen/qwen3-coder-480b-a35b-07-25": 908825866,
661
+ "openai/gpt-oss-20b": 840140760,
662
+ "Others": 9684138007
663
+ }
664
+ },
665
+ {
666
+ "x": "2025-11-21 00:00:00",
667
+ "ys": {
668
+ "kwaipilot/kat-coder-pro-v1:free": 7486414305,
669
+ "deepseek/deepseek-chat-v3-0324": 7231155385,
670
+ "qwen/qwen3-coder-30b-a3b-instruct": 2172542704,
671
+ "qwen/qwen3-vl-235b-a22b-instruct": 2129599141,
672
+ "z-ai/glm-4.6": 2047172561,
673
+ "deepseek/deepseek-chat-v3.1": 1944334723,
674
+ "mistralai/mistral-nemo": 1158290985,
675
+ "qwen/qwen3-235b-a22b-07-25": 1131002394,
676
+ "deepseek/deepseek-v3.2-exp": 1041356775,
677
+ "Others": 8441850343
678
+ }
679
+ },
680
+ {
681
+ "x": "2025-11-22 00:00:00",
682
+ "ys": {
683
+ "kwaipilot/kat-coder-pro-v1:free": 8119980028,
684
+ "deepseek/deepseek-chat-v3-0324": 6887347723,
685
+ "qwen/qwen3-coder-30b-a3b-instruct": 3069810155,
686
+ "qwen/qwen3-vl-235b-a22b-instruct": 1970100603,
687
+ "z-ai/glm-4.5-air": 1610957581,
688
+ "deepseek/deepseek-chat-v3.1": 1602187010,
689
+ "z-ai/glm-4.6": 1525550934,
690
+ "qwen/qwen3-235b-a22b-07-25": 1088871692,
691
+ "deepseek/deepseek-v3.2-exp": 771281229,
692
+ "Others": 7550850216
693
+ }
694
+ },
695
+ {
696
+ "x": "2025-11-23 00:00:00",
697
+ "ys": {
698
+ "kwaipilot/kat-coder-pro-v1:free": 8367932291,
699
+ "deepseek/deepseek-chat-v3-0324": 7757314071,
700
+ "z-ai/glm-4.5": 2880211428,
701
+ "qwen/qwen3-vl-235b-a22b-instruct": 2688849797,
702
+ "z-ai/glm-4.5-air": 2000068570,
703
+ "z-ai/glm-4.6": 1660343632,
704
+ "deepseek/deepseek-chat-v3.1": 1647827147,
705
+ "qwen/qwen3-coder-30b-a3b-instruct": 1623968006,
706
+ "deepseek/deepseek-v3.2-exp": 887460066,
707
+ "Others": 7146203094
708
+ }
709
+ },
710
+ {
711
+ "x": "2025-11-24 00:00:00",
712
+ "ys": {
713
+ "deepseek/deepseek-chat-v3-0324": 9601825075,
714
+ "kwaipilot/kat-coder-pro-v1:free": 7914359933,
715
+ "z-ai/glm-4.5": 2925358889,
716
+ "qwen/qwen3-vl-235b-a22b-instruct": 2734293095,
717
+ "deepseek/deepseek-chat-v3.1": 2675671729,
718
+ "z-ai/glm-4.6": 2408695499,
719
+ "z-ai/glm-4.5-air": 2366104713,
720
+ "deepseek/deepseek-v3.2-exp": 1679449912,
721
+ "qwen/qwen3-coder-480b-a35b-07-25": 1375203376,
722
+ "Others": 9122533838
723
+ }
724
+ },
725
+ {
726
+ "x": "2025-11-25 00:00:00",
727
+ "ys": {
728
+ "deepseek/deepseek-chat-v3-0324": 9444079695,
729
+ "kwaipilot/kat-coder-pro-v1:free": 6512339794,
730
+ "qwen/qwen3-vl-235b-a22b-instruct": 4005688759,
731
+ "z-ai/glm-4.6": 2500461545,
732
+ "deepseek/deepseek-v3.2-exp": 2482523513,
733
+ "deepseek/deepseek-chat-v3.1": 2429766171,
734
+ "z-ai/glm-4.5-air": 1909439992,
735
+ "qwen/qwen3-coder-480b-a35b-07-25": 1306473412,
736
+ "deepseek/deepseek-v3.1-terminus": 1097139618,
737
+ "Others": 10307151146
738
+ }
739
+ },
740
+ {
741
+ "x": "2025-11-26 00:00:00",
742
+ "ys": {
743
+ "deepseek/deepseek-chat-v3-0324": 9641553530,
744
+ "qwen/qwen3-vl-235b-a22b-instruct": 3407522842,
745
+ "deepseek/deepseek-v3.2-exp": 2762544124,
746
+ "z-ai/glm-4.6": 2734155492,
747
+ "deepseek/deepseek-chat-v3.1": 2487221295,
748
+ "kwaipilot/kat-coder-pro-v1:free": 2417093294,
749
+ "z-ai/glm-4.5-air": 2173326178,
750
+ "qwen/qwen3-coder-480b-a35b-07-25": 1223048732,
751
+ "z-ai/glm-4.6:exacto": 1090385101,
752
+ "Others": 10486030908
753
+ }
754
+ },
755
+ {
756
+ "x": "2025-11-27 00:00:00",
757
+ "ys": {
758
+ "deepseek/deepseek-chat-v3-0324": 7297096921,
759
+ "kwaipilot/kat-coder-pro-v1:free": 2817316758,
760
+ "deepseek/deepseek-chat-v3.1": 2815762476,
761
+ "z-ai/glm-4.6": 2577517311,
762
+ "qwen/qwen3-vl-235b-a22b-instruct": 2545389366,
763
+ "deepseek/deepseek-v3.2-exp": 2063156526,
764
+ "qwen/qwen3-next-80b-a3b-instruct-2509": 1990406663,
765
+ "z-ai/glm-4.5-air": 1976749019,
766
+ "deepseek/deepseek-chat-v3": 944562496,
767
+ "Others": 9456387256
768
+ }
769
+ },
770
+ {
771
+ "x": "2025-11-28 00:00:00",
772
+ "ys": {
773
+ "deepseek/deepseek-chat-v3-0324": 7627990969,
774
+ "qwen/qwen3-next-80b-a3b-instruct-2509": 3285921509,
775
+ "kwaipilot/kat-coder-pro-v1:free": 3001387886,
776
+ "deepseek/deepseek-chat-v3.1": 2862069221,
777
+ "z-ai/glm-4.6": 2578664790,
778
+ "qwen/qwen3-vl-235b-a22b-instruct": 2340912416,
779
+ "z-ai/glm-4.5-air": 2207950344,
780
+ "deepseek/deepseek-v3.2-exp": 2014545185,
781
+ "openai/gpt-oss-120b": 1448632564,
782
+ "Others": 10516015732
783
+ }
784
+ },
785
+ {
786
+ "x": "2025-11-29 00:00:00",
787
+ "ys": {
788
+ "deepseek/deepseek-chat-v3-0324": 8226819313,
789
+ "deepseek/deepseek-chat-v3.1": 3138653509,
790
+ "z-ai/glm-4.6": 2908040152,
791
+ "deepseek/deepseek-v3.2-exp": 2426671860,
792
+ "kwaipilot/kat-coder-pro-v1:free": 2255355377,
793
+ "qwen/qwen3-vl-235b-a22b-instruct": 2168710949,
794
+ "z-ai/glm-4.5-air": 1968391917,
795
+ "deepseek/deepseek-v3.1-terminus": 1024775302,
796
+ "deepseek/deepseek-chat-v3": 781546311,
797
+ "Others": 6744180571
798
+ }
799
+ },
800
+ {
801
+ "x": "2025-11-30 00:00:00",
802
+ "ys": {
803
+ "deepseek/deepseek-chat-v3-0324": 8804823726,
804
+ "z-ai/glm-4.6": 4527456831,
805
+ "deepseek/deepseek-v3.2-exp": 3668832538,
806
+ "deepseek/deepseek-chat-v3.1": 3272156591,
807
+ "kwaipilot/kat-coder-pro-v1:free": 2398681094,
808
+ "z-ai/glm-4.5-air": 2367464647,
809
+ "qwen/qwen3-vl-235b-a22b-instruct": 1401304316,
810
+ "deepseek/deepseek-v3.1-terminus": 1041360424,
811
+ "qwen/qwen3-235b-a22b-07-25": 923190940,
812
+ "Others": 6709471197
813
+ }
814
+ },
815
+ {
816
+ "x": "2025-12-01 00:00:00",
817
+ "ys": {
818
+ "deepseek/deepseek-chat-v3-0324": 8364746639,
819
+ "deepseek/deepseek-v3.2-exp": 6751433531,
820
+ "z-ai/glm-4.6": 4071519850,
821
+ "deepseek/deepseek-chat-v3.1": 3320544594,
822
+ "kwaipilot/kat-coder-pro-v1:free": 3068431329,
823
+ "z-ai/glm-4.5-air": 2321897619,
824
+ "qwen/qwen3-vl-235b-a22b-instruct": 2153527930,
825
+ "deepseek/deepseek-v3.1-terminus": 1198842305,
826
+ "qwen/qwen3-235b-a22b-07-25": 1097857674,
827
+ "Others": 8819401990
828
+ }
829
+ },
830
+ {
831
+ "x": "2025-12-02 00:00:00",
832
+ "ys": {
833
+ "deepseek/deepseek-chat-v3-0324": 8134302072,
834
+ "deepseek/deepseek-v3.2-exp": 7489602383,
835
+ "z-ai/glm-4.6": 3719768182,
836
+ "kwaipilot/kat-coder-pro-v1:free": 2971542834,
837
+ "deepseek/deepseek-chat-v3.1": 2878453061,
838
+ "qwen/qwen3-vl-235b-a22b-instruct": 2564977302,
839
+ "z-ai/glm-4.5-air": 2219108868,
840
+ "qwen/qwen3-235b-a22b-07-25": 1489562219,
841
+ "openai/gpt-oss-120b": 1324052322,
842
+ "Others": 10315047392
843
+ }
844
+ },
845
+ {
846
+ "x": "2025-12-03 00:00:00",
847
+ "ys": {
848
+ "deepseek/deepseek-chat-v3-0324": 8007158468,
849
+ "z-ai/glm-4.6": 3574993261,
850
+ "kwaipilot/kat-coder-pro-v1:free": 2887641706,
851
+ "deepseek/deepseek-chat-v3.1": 2838003621,
852
+ "qwen/qwen3-vl-235b-a22b-instruct": 2478752557,
853
+ "z-ai/glm-4.5-air": 2142710265,
854
+ "deepseek/deepseek-v3.2-exp": 1947853039,
855
+ "qwen/qwen3-235b-a22b-07-25": 1404441249,
856
+ "deepseek/deepseek-v3.1-terminus": 1233039599,
857
+ "Others": 10976688630
858
+ }
859
+ },
860
+ {
861
+ "x": "2025-12-04 00:00:00",
862
+ "ys": {
863
+ "deepseek/deepseek-chat-v3-0324": 7215648146,
864
+ "z-ai/glm-4.6": 3845293269,
865
+ "kwaipilot/kat-coder-pro-v1:free": 3166955754,
866
+ "qwen/qwen3-vl-8b-instruct": 3154009931,
867
+ "deepseek/deepseek-chat-v3.1": 3036031554,
868
+ "qwen/qwen3-vl-235b-a22b-instruct": 2693368635,
869
+ "minimax/minimax-m2": 2625319027,
870
+ "z-ai/glm-4.5-air": 2039757994,
871
+ "deepseek/deepseek-v3.2-exp": 2019494389,
872
+ "Others": 12874043595
873
+ }
874
+ },
875
+ {
876
+ "x": "2025-12-05 00:00:00",
877
+ "ys": {
878
+ "deepseek/deepseek-chat-v3-0324": 6412810096,
879
+ "qwen/qwen3-vl-8b-instruct": 5040222350,
880
+ "deepseek/deepseek-chat-v3.1": 3578056983,
881
+ "qwen/qwen3-vl-235b-a22b-instruct": 2949320195,
882
+ "kwaipilot/kat-coder-pro-v1:free": 2681249436,
883
+ "z-ai/glm-4.5-air": 2199962816,
884
+ "z-ai/glm-4.6": 2035095126,
885
+ "qwen/qwen3-coder-480b-a35b-07-25": 1624864626,
886
+ "minimax/minimax-m2": 1443425930,
887
+ "Others": 12132011576
888
+ }
889
+ },
890
+ {
891
+ "x": "2025-12-06 00:00:00",
892
+ "ys": {
893
+ "deepseek/deepseek-chat-v3-0324": 6804758311,
894
+ "qwen/qwen3-vl-8b-instruct": 6259527374,
895
+ "deepseek/deepseek-chat-v3.1": 3458038238,
896
+ "kwaipilot/kat-coder-pro-v1:free": 2312011266,
897
+ "z-ai/glm-4.5-air": 2241142077,
898
+ "z-ai/glm-4.6": 2078532812,
899
+ "qwen/qwen3-coder-480b-a35b-07-25": 2001207428,
900
+ "openai/gpt-oss-120b": 1910472621,
901
+ "qwen/qwen3-vl-235b-a22b-instruct": 1582118383,
902
+ "Others": 8951460143
903
+ }
904
+ },
905
+ {
906
+ "x": "2025-12-07 00:00:00",
907
+ "ys": {
908
+ "deepseek/deepseek-chat-v3-0324": 6883460425,
909
+ "deepseek/deepseek-chat-v3.1": 3615181501,
910
+ "kwaipilot/kat-coder-pro-v1:free": 2646922726,
911
+ "z-ai/glm-4.5-air": 2340807263,
912
+ "qwen/qwen3-coder-480b-a35b-07-25": 2302195420,
913
+ "z-ai/glm-4.6": 1829358521,
914
+ "openai/gpt-oss-120b": 1614030385,
915
+ "qwen/qwen3-vl-235b-a22b-instruct": 1530377370,
916
+ "qwen/qwen3-235b-a22b-07-25": 901850440,
917
+ "Others": 7824919134
918
+ }
919
+ },
920
+ {
921
+ "x": "2025-12-08 00:00:00",
922
+ "ys": {
923
+ "deepseek/deepseek-chat-v3-0324": 7494235571,
924
+ "deepseek/deepseek-chat-v3.1": 3910045245,
925
+ "kwaipilot/kat-coder-pro-v1:free": 3219208944,
926
+ "qwen/qwen3-coder-480b-a35b-07-25": 2744725617,
927
+ "z-ai/glm-4.6": 1984488749,
928
+ "deepseek/deepseek-v3.2-exp": 1619985962,
929
+ "openai/gpt-oss-120b": 1435905003,
930
+ "qwen/qwen3-235b-a22b-07-25": 1254349370,
931
+ "mistralai/mistral-nemo": 907220489,
932
+ "Others": 8430476787
933
+ }
934
+ },
935
+ {
936
+ "x": "2025-12-09 00:00:00",
937
+ "ys": {
938
+ "deepseek/deepseek-chat-v3-0324": 6814610812,
939
+ "qwen/qwen3-coder-480b-a35b-07-25": 5150173298,
940
+ "deepseek/deepseek-chat-v3.1": 3791005024,
941
+ "kwaipilot/kat-coder-pro-v1:free": 3749888209,
942
+ "qwen/qwen3-235b-a22b-07-25": 2010022001,
943
+ "z-ai/glm-4.6": 1784705033,
944
+ "qwen/qwen3-vl-235b-a22b-instruct": 1716989013,
945
+ "openai/gpt-oss-120b": 1605624884,
946
+ "deepseek/deepseek-v3.2-exp": 1472414772,
947
+ "Others": 10521971660
948
+ }
949
+ },
950
+ {
951
+ "x": "2025-12-10 00:00:00",
952
+ "ys": {
953
+ "deepseek/deepseek-chat-v3-0324": 6650411370,
954
+ "deepseek/deepseek-chat-v3.1": 3592505742,
955
+ "kwaipilot/kat-coder-pro-v1:free": 3325614596,
956
+ "z-ai/glm-4.6": 2325227837,
957
+ "qwen/qwen3-vl-235b-a22b-instruct": 1862005667,
958
+ "qwen/qwen3-235b-a22b-07-25": 1817007851,
959
+ "deepseek/deepseek-v3.2-exp": 1709777544,
960
+ "openai/gpt-oss-120b": 1664766419,
961
+ "qwen/qwen3-vl-8b-instruct": 1594101470,
962
+ "Others": 10771344043
963
+ }
964
+ },
965
+ {
966
+ "x": "2025-12-11 00:00:00",
967
+ "ys": {
968
+ "deepseek/deepseek-chat-v3-0324": 6506215196,
969
+ "qwen/qwen3-coder-480b-a35b-07-25": 4054777200,
970
+ "deepseek/deepseek-chat-v3.1": 3640348173,
971
+ "kwaipilot/kat-coder-pro-v1:free": 3225208115,
972
+ "qwen/qwen3-235b-a22b-07-25": 2051746397,
973
+ "qwen/qwen3-vl-8b-instruct": 1996236859,
974
+ "openai/gpt-oss-120b": 1526981346,
975
+ "z-ai/glm-4.6": 1377821948,
976
+ "deepseek/deepseek-v3.2-20251201": 1136962154,
977
+ "Others": 10277611172
978
+ }
979
+ },
980
+ {
981
+ "x": "2025-12-12 00:00:00",
982
+ "ys": {
983
+ "deepseek/deepseek-chat-v3-0324": 6198288509,
984
+ "qwen/qwen3-coder-480b-a35b-07-25": 5484945254,
985
+ "kwaipilot/kat-coder-pro-v1:free": 3823730356,
986
+ "deepseek/deepseek-chat-v3.1": 3184079833,
987
+ "openai/gpt-oss-120b": 2535841350,
988
+ "qwen/qwen3-235b-a22b-07-25": 2465705169,
989
+ "qwen/qwen3-vl-8b-instruct": 2373540991,
990
+ "z-ai/glm-4.6": 1372916811,
991
+ "deepseek/deepseek-v3.2-exp": 1237012461,
992
+ "Others": 11375108349
993
+ }
994
+ },
995
+ {
996
+ "x": "2025-12-13 00:00:00",
997
+ "ys": {
998
+ "deepseek/deepseek-chat-v3-0324": 5779323331,
999
+ "openai/gpt-oss-120b": 3978488553,
1000
+ "kwaipilot/kat-coder-pro-v1:free": 3704911944,
1001
+ "deepseek/deepseek-chat-v3.1": 2709803725,
1002
+ "qwen/qwen3-235b-a22b-07-25": 2280979611,
1003
+ "z-ai/glm-4.6": 1640658018,
1004
+ "qwen/qwen3-vl-8b-instruct": 1220591894,
1005
+ "deepseek/deepseek-v3.2-20251201": 938179358,
1006
+ "deepseek/deepseek-v3.2-exp": 928359086,
1007
+ "Others": 8812649932
1008
+ }
1009
+ },
1010
+ {
1011
+ "x": "2025-12-14 00:00:00",
1012
+ "ys": {
1013
+ "deepseek/deepseek-chat-v3-0324": 6215719726,
1014
+ "kwaipilot/kat-coder-pro-v1:free": 2871863235,
1015
+ "deepseek/deepseek-chat-v3.1": 2591324298,
1016
+ "openai/gpt-oss-120b": 2299801111,
1017
+ "z-ai/glm-4.6": 1545611575,
1018
+ "deepseek/deepseek-v3.2-20251201": 1496084532,
1019
+ "qwen/qwen3-vl-8b-instruct": 1328981791,
1020
+ "qwen/qwen3-235b-a22b-07-25": 1268229416,
1021
+ "deepseek/deepseek-v3.2-exp": 1257194019,
1022
+ "Others": 9646144085
1023
+ }
1024
+ },
1025
+ {
1026
+ "x": "2025-12-15 00:00:00",
1027
+ "ys": {
1028
+ "deepseek/deepseek-chat-v3-0324": 6536517573,
1029
+ "deepseek/deepseek-v3.2-20251201": 5575546579,
1030
+ "openai/gpt-oss-120b": 4852151950,
1031
+ "kwaipilot/kat-coder-pro-v1:free": 3257460251,
1032
+ "deepseek/deepseek-chat-v3.1": 3171543931,
1033
+ "qwen/qwen3-235b-a22b-07-25": 2310392811,
1034
+ "deepseek/deepseek-v3.2-exp": 1473612726,
1035
+ "deepseek/deepseek-v3.1-terminus": 1404455074,
1036
+ "z-ai/glm-4.6": 1250431516,
1037
+ "Others": 10489982632
1038
+ }
1039
+ },
1040
+ {
1041
+ "x": "2025-12-16 00:00:00",
1042
+ "ys": {
1043
+ "deepseek/deepseek-v3.2-20251201": 7638705054,
1044
+ "deepseek/deepseek-chat-v3-0324": 6284247754,
1045
+ "kwaipilot/kat-coder-pro-v1:free": 3570714567,
1046
+ "deepseek/deepseek-chat-v3.1": 2820361856,
1047
+ "qwen/qwen3-235b-a22b-07-25": 2712820494,
1048
+ "qwen/qwen3-vl-235b-a22b-instruct": 2604458130,
1049
+ "z-ai/glm-4.6": 1650002174,
1050
+ "deepseek/deepseek-v3.1-terminus": 1493530519,
1051
+ "deepseek/deepseek-v3.2-exp": 1454149826,
1052
+ "Others": 11767546968
1053
+ }
1054
+ },
1055
+ {
1056
+ "x": "2025-12-17 00:00:00",
1057
+ "ys": {
1058
+ "deepseek/deepseek-chat-v3-0324": 6056893263,
1059
+ "deepseek/deepseek-v3.2-20251201": 5050182050,
1060
+ "kwaipilot/kat-coder-pro-v1:free": 4081768725,
1061
+ "openai/gpt-oss-120b": 3123353236,
1062
+ "qwen/qwen3-235b-a22b-07-25": 2499064884,
1063
+ "qwen/qwen3-vl-235b-a22b-instruct": 2451969101,
1064
+ "deepseek/deepseek-chat-v3.1": 2329256037,
1065
+ "deepseek/deepseek-v3.1-terminus": 1274680311,
1066
+ "z-ai/glm-4.6": 1274117739,
1067
+ "Others": 11421251327
1068
+ }
1069
+ },
1070
+ {
1071
+ "x": "2025-12-18 00:00:00",
1072
+ "ys": {
1073
+ "deepseek/deepseek-chat-v3-0324": 6251588460,
1074
+ "deepseek/deepseek-v3.2-20251201": 4891336777,
1075
+ "openai/gpt-oss-120b": 4380559488,
1076
+ "kwaipilot/kat-coder-pro-v1:free": 3843853399,
1077
+ "qwen/qwen3-vl-235b-a22b-instruct": 3266070932,
1078
+ "qwen/qwen3-235b-a22b-07-25": 2716241752,
1079
+ "deepseek/deepseek-chat-v3.1": 2634734815,
1080
+ "z-ai/glm-4.6": 1232646707,
1081
+ "deepseek/deepseek-v3.1-terminus": 1020950178,
1082
+ "Others": 11483950034
1083
+ }
1084
+ },
1085
+ {
1086
+ "x": "2025-12-19 00:00:00",
1087
+ "ys": {
1088
+ "deepseek/deepseek-chat-v3-0324": 6432604047,
1089
+ "qwen/qwen3-vl-235b-a22b-instruct": 4615212420,
1090
+ "deepseek/deepseek-v3.2-20251201": 4059005040,
1091
+ "kwaipilot/kat-coder-pro-v1:free": 3668425484,
1092
+ "deepseek/deepseek-chat-v3.1": 3377340402,
1093
+ "qwen/qwen3-235b-a22b-07-25": 2086439814,
1094
+ "openai/gpt-oss-120b": 1993910857,
1095
+ "z-ai/glm-4.6": 1042605615,
1096
+ "meta-llama/llama-3.1-8b-instruct": 876228294,
1097
+ "Others": 10339495041
1098
+ }
1099
+ },
1100
+ {
1101
+ "x": "2025-12-20 00:00:00",
1102
+ "ys": {
1103
+ "deepseek/deepseek-chat-v3-0324": 6577713135,
1104
+ "kwaipilot/kat-coder-pro-v1:free": 3891978587,
1105
+ "qwen/qwen3-vl-235b-a22b-instruct": 3029834897,
1106
+ "deepseek/deepseek-chat-v3.1": 2720747097,
1107
+ "deepseek/deepseek-v3.2-20251201": 2429497823,
1108
+ "qwen/qwen3-235b-a22b-07-25": 1696199491,
1109
+ "z-ai/glm-4.6": 1009810151,
1110
+ "qwen/qwen3-vl-235b-a22b-thinking": 981970413,
1111
+ "openai/gpt-oss-120b": 914159995,
1112
+ "Others": 9059666984
1113
+ }
1114
+ },
1115
+ {
1116
+ "x": "2025-12-21 00:00:00",
1117
+ "ys": {
1118
+ "deepseek/deepseek-chat-v3-0324": 7032096120,
1119
+ "kwaipilot/kat-coder-pro-v1:free": 4378200089,
1120
+ "qwen/qwen3-vl-235b-a22b-instruct": 3297790354,
1121
+ "deepseek/deepseek-chat-v3.1": 2920306844,
1122
+ "deepseek/deepseek-v3.2-20251201": 2294980683,
1123
+ "z-ai/glm-4.6": 1211532318,
1124
+ "deepseek/deepseek-v3.2-exp": 928731953,
1125
+ "mistralai/mistral-nemo": 854845151,
1126
+ "qwen/qwen3-235b-a22b-07-25": 811228856,
1127
+ "Others": 9307150043
1128
+ }
1129
+ },
1130
+ {
1131
+ "x": "2025-12-22 00:00:00",
1132
+ "ys": {
1133
+ "deepseek/deepseek-chat-v3-0324": 7379920102,
1134
+ "kwaipilot/kat-coder-pro-v1:free": 5746977617,
1135
+ "deepseek/deepseek-v3.2-20251201": 4223003377,
1136
+ "deepseek/deepseek-chat-v3.1": 3454273398,
1137
+ "qwen/qwen3-vl-235b-a22b-instruct": 2730636098,
1138
+ "deepseek/deepseek-v3.2-exp": 1227784453,
1139
+ "z-ai/glm-4.6": 1080099277,
1140
+ "qwen/qwen3-235b-a22b-07-25": 1033982920,
1141
+ "mistralai/mistral-nemo": 911488191,
1142
+ "Others": 9952528678
1143
+ }
1144
+ },
1145
+ {
1146
+ "x": "2025-12-23 00:00:00",
1147
+ "ys": {
1148
+ "kwaipilot/kat-coder-pro-v1:free": 7338174566,
1149
+ "deepseek/deepseek-chat-v3-0324": 7336627152,
1150
+ "qwen/qwen3-vl-235b-a22b-instruct": 4440078188,
1151
+ "deepseek/deepseek-v3.2-20251201": 3536892506,
1152
+ "deepseek/deepseek-chat-v3.1": 3369462092,
1153
+ "deepseek/deepseek-v3.2-exp": 1352547859,
1154
+ "qwen/qwen3-vl-235b-a22b-thinking": 1221106668,
1155
+ "qwen/qwen3-235b-a22b-07-25": 1120780742,
1156
+ "minimax/minimax-m2": 1114408337,
1157
+ "Others": 11531750931
1158
+ }
1159
+ },
1160
+ {
1161
+ "x": "2025-12-24 00:00:00",
1162
+ "ys": {
1163
+ "deepseek/deepseek-chat-v3-0324": 6718923484,
1164
+ "kwaipilot/kat-coder-pro-v1:free": 5544278070,
1165
+ "qwen/qwen3-vl-235b-a22b-instruct": 4944200587,
1166
+ "deepseek/deepseek-v3.2-20251201": 4457594787,
1167
+ "z-ai/glm-4.7-20251222": 3276281821,
1168
+ "deepseek/deepseek-chat-v3.1": 3031844682,
1169
+ "moonshotai/kimi-k2-0905": 1725915564,
1170
+ "minimax/minimax-m2": 1559347906,
1171
+ "deepseek/deepseek-v3.2-exp": 1503673210,
1172
+ "Others": 12751884135
1173
+ }
1174
+ },
1175
+ {
1176
+ "x": "2025-12-25 00:00:00",
1177
+ "ys": {
1178
+ "deepseek/deepseek-chat-v3-0324": 5928347805,
1179
+ "deepseek/deepseek-v3.2-20251201": 3816695017,
1180
+ "kwaipilot/kat-coder-pro-v1:free": 3412428987,
1181
+ "deepseek/deepseek-chat-v3.1": 2754333261,
1182
+ "z-ai/glm-4.7-20251222": 2294313201,
1183
+ "moonshotai/kimi-k2-0905": 1651966121,
1184
+ "deepseek/deepseek-v3.2-exp": 1301060405,
1185
+ "minimax/minimax-m2": 1270679546,
1186
+ "openai/gpt-oss-120b": 972744961,
1187
+ "Others": 9603350564
1188
+ }
1189
+ },
1190
+ {
1191
+ "x": "2025-12-26 00:00:00",
1192
+ "ys": {
1193
+ "deepseek/deepseek-chat-v3-0324": 6457624079,
1194
+ "deepseek/deepseek-v3.2-20251201": 4577416968,
1195
+ "kwaipilot/kat-coder-pro-v1:free": 3705311839,
1196
+ "deepseek/deepseek-chat-v3.1": 3050601139,
1197
+ "z-ai/glm-4.7-20251222": 2137614624,
1198
+ "minimax/minimax-m2": 1399666996,
1199
+ "deepseek/deepseek-v3.2-exp": 1190858203,
1200
+ "mistralai/mistral-nemo": 915927553,
1201
+ "qwen/qwen3-235b-a22b-07-25": 888082234,
1202
+ "Others": 10231862845
1203
+ }
1204
+ },
1205
+ {
1206
+ "x": "2025-12-27 00:00:00",
1207
+ "ys": {
1208
+ "deepseek/deepseek-chat-v3-0324": 6314628010,
1209
+ "deepseek/deepseek-v3.2-20251201": 5973314043,
1210
+ "kwaipilot/kat-coder-pro-v1:free": 3555123450,
1211
+ "deepseek/deepseek-chat-v3.1": 3168685788,
1212
+ "z-ai/glm-4.7-20251222": 2586114766,
1213
+ "minimax/minimax-m2": 1382998666,
1214
+ "openai/gpt-oss-120b": 1188539998,
1215
+ "deepseek/deepseek-v3.2-exp": 942874237,
1216
+ "deepseek/deepseek-chat-v3": 908479462,
1217
+ "Others": 9836691305
1218
+ }
1219
+ },
1220
+ {
1221
+ "x": "2025-12-28 00:00:00",
1222
+ "ys": {
1223
+ "deepseek/deepseek-chat-v3-0324": 6887050919,
1224
+ "deepseek/deepseek-v3.2-20251201": 4114964233,
1225
+ "kwaipilot/kat-coder-pro-v1:free": 3927404923,
1226
+ "deepseek/deepseek-chat-v3.1": 3160086097,
1227
+ "z-ai/glm-4.7-20251222": 2167255950,
1228
+ "meta-llama/llama-3.1-8b-instruct": 1944968076,
1229
+ "minimax/minimax-m2": 1606414071,
1230
+ "openai/gpt-oss-120b": 1170130866,
1231
+ "deepseek/deepseek-v3.1-terminus:exacto": 1156701880,
1232
+ "Others": 10109831529
1233
+ }
1234
+ },
1235
+ {
1236
+ "x": "2025-12-29 00:00:00",
1237
+ "ys": {
1238
+ "deepseek/deepseek-chat-v3-0324": 8338611810,
1239
+ "deepseek/deepseek-v3.2-20251201": 6761110732,
1240
+ "kwaipilot/kat-coder-pro-v1:free": 5757539090,
1241
+ "deepseek/deepseek-chat-v3.1": 3413355584,
1242
+ "z-ai/glm-4.7-20251222": 2415054560,
1243
+ "meta-llama/llama-3.1-8b-instruct": 2395756764,
1244
+ "minimax/minimax-m2": 2344952944,
1245
+ "qwen/qwen3-vl-235b-a22b-instruct": 2156797875,
1246
+ "openai/gpt-oss-120b": 1720676647,
1247
+ "Others": 11778386511
1248
+ }
1249
+ },
1250
+ {
1251
+ "x": "2025-12-30 00:00:00",
1252
+ "ys": {
1253
+ "deepseek/deepseek-v3.2-20251201": 8745755330,
1254
+ "deepseek/deepseek-chat-v3-0324": 7905829887,
1255
+ "kwaipilot/kat-coder-pro-v1:free": 4383313321,
1256
+ "qwen/qwen3-vl-235b-a22b-instruct": 3388528877,
1257
+ "deepseek/deepseek-chat-v3.1": 3346428614,
1258
+ "minimax/minimax-m2": 2172924262,
1259
+ "z-ai/glm-4.7-20251222": 2135767999,
1260
+ "meta-llama/llama-3.1-8b-instruct": 1932494991,
1261
+ "openai/gpt-oss-120b": 1464291188,
1262
+ "Others": 12420259281
1263
+ }
1264
+ },
1265
+ {
1266
+ "x": "2025-12-31 00:00:00",
1267
+ "ys": {
1268
+ "deepseek/deepseek-v3.2-20251201": 8608549119,
1269
+ "deepseek/deepseek-chat-v3-0324": 7390638116,
1270
+ "kwaipilot/kat-coder-pro-v1:free": 3995441701,
1271
+ "deepseek/deepseek-chat-v3.1": 3253163906,
1272
+ "openai/gpt-oss-120b": 2064721061,
1273
+ "z-ai/glm-4.7-20251222": 1776717634,
1274
+ "qwen/qwen3-vl-235b-a22b-instruct": 1680654902,
1275
+ "minimax/minimax-m2": 1639604694,
1276
+ "meta-llama/llama-3.1-8b-instruct": 937502649,
1277
+ "Others": 10066271686
1278
+ }
1279
+ },
1280
+ {
1281
+ "x": "2026-01-01 00:00:00",
1282
+ "ys": {
1283
+ "deepseek/deepseek-chat-v3-0324": 6852604159,
1284
+ "deepseek/deepseek-v3.2-20251201": 5879196852,
1285
+ "kwaipilot/kat-coder-pro-v1:free": 3146830427,
1286
+ "deepseek/deepseek-chat-v3.1": 2981859614,
1287
+ "z-ai/glm-4.7-20251222": 2096135473,
1288
+ "meta-llama/llama-3.1-8b-instruct": 1603204872,
1289
+ "minimax/minimax-m2": 1554817579,
1290
+ "qwen/qwen3-vl-235b-a22b-instruct": 1405919814,
1291
+ "qwen/qwen3-235b-a22b-07-25": 1384118659,
1292
+ "Others": 9298246842
1293
+ }
1294
+ },
1295
+ {
1296
+ "x": "2026-01-02 00:00:00",
1297
+ "ys": {
1298
+ "deepseek/deepseek-v3.2-20251201": 8528840797,
1299
+ "deepseek/deepseek-chat-v3-0324": 6683947712,
1300
+ "kwaipilot/kat-coder-pro-v1:free": 4306772663,
1301
+ "deepseek/deepseek-chat-v3.1": 3384331894,
1302
+ "z-ai/glm-4.7-20251222": 2097880838,
1303
+ "minimax/minimax-m2": 1633157316,
1304
+ "qwen/qwen3-vl-235b-a22b-instruct": 1389630714,
1305
+ "deepseek/deepseek-r1-0528": 992457918,
1306
+ "qwen/qwen3-235b-a22b-07-25": 934316113,
1307
+ "Others": 9355491327
1308
+ }
1309
+ },
1310
+ {
1311
+ "x": "2026-01-03 00:00:00",
1312
+ "ys": {
1313
+ "deepseek/deepseek-v3.2-20251201": 8862218692,
1314
+ "deepseek/deepseek-chat-v3-0324": 7026027475,
1315
+ "kwaipilot/kat-coder-pro-v1:free": 4031798109,
1316
+ "z-ai/glm-4.7-20251222": 3189098131,
1317
+ "deepseek/deepseek-chat-v3.1": 2948543307,
1318
+ "minimax/minimax-m2": 1919410619,
1319
+ "qwen/qwen3-235b-a22b-07-25": 919906302,
1320
+ "deepseek/deepseek-r1-0528": 787980709,
1321
+ "z-ai/glm-4.5-air": 656717722,
1322
+ "Others": 9122615018
1323
+ }
1324
+ },
1325
+ {
1326
+ "x": "2026-01-04 00:00:00",
1327
+ "ys": {
1328
+ "deepseek/deepseek-v3.2-20251201": 8142814068,
1329
+ "deepseek/deepseek-chat-v3-0324": 6836931770,
1330
+ "kwaipilot/kat-coder-pro-v1:free": 5348119875,
1331
+ "z-ai/glm-4.7-20251222": 3291021054,
1332
+ "deepseek/deepseek-chat-v3.1": 2524914572,
1333
+ "minimax/minimax-m2": 2426225140,
1334
+ "deepseek/deepseek-chat-v3": 965031197,
1335
+ "qwen/qwen3-235b-a22b-07-25": 913630264,
1336
+ "deepseek/deepseek-r1-0528": 868374080,
1337
+ "Others": 9896234694
1338
+ }
1339
+ },
1340
+ {
1341
+ "x": "2026-01-05 00:00:00",
1342
+ "ys": {
1343
+ "deepseek/deepseek-chat-v3-0324": 7257007789,
1344
+ "deepseek/deepseek-v3.2-20251201": 6087857681,
1345
+ "kwaipilot/kat-coder-pro-v1:free": 4213687122,
1346
+ "z-ai/glm-4.7-20251222": 4024195783,
1347
+ "deepseek/deepseek-chat-v3.1": 2749260043,
1348
+ "minimax/minimax-m2": 2489717102,
1349
+ "minimax/minimax-m2.1": 1892834949,
1350
+ "deepseek/deepseek-chat-v3": 1197731322,
1351
+ "deepseek/deepseek-r1-0528": 943457369,
1352
+ "Others": 10502637510
1353
+ }
1354
+ }
1355
+ ],
1356
+ "fetched_at": "2026-01-06T00:09:40.476277",
1357
+ "success": true
1358
+ }
data/providers/openai.json ADDED
@@ -0,0 +1,1358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "provider": "openai",
3
+ "url": "https://openrouter.ai/provider/openai",
4
+ "data": [
5
+ {
6
+ "x": "2025-10-08 00:00:00",
7
+ "ys": {
8
+ "openai/gpt-4.1-mini-2025-04-14": 17621675087,
9
+ "openai/gpt-5-2025-08-07": 12194469989,
10
+ "openai/gpt-4o-mini": 11139900230,
11
+ "openai/gpt-5-mini-2025-08-07": 6699475683,
12
+ "openai/gpt-5-nano-2025-08-07": 5202781851,
13
+ "openai/gpt-4.1-2025-04-14": 4451472349,
14
+ "openai/gpt-5-codex": 2788236984,
15
+ "openai/gpt-5-chat-2025-08-07": 1689589943,
16
+ "openai/gpt-4.1-nano-2025-04-14": 1595791476,
17
+ "Others": 3912459785
18
+ }
19
+ },
20
+ {
21
+ "x": "2025-10-09 00:00:00",
22
+ "ys": {
23
+ "openai/gpt-4.1-mini-2025-04-14": 23672257274,
24
+ "openai/gpt-4o-mini": 12695759665,
25
+ "openai/gpt-5-2025-08-07": 12468111712,
26
+ "openai/gpt-4.1-2025-04-14": 7396366862,
27
+ "openai/gpt-5-mini-2025-08-07": 6305550929,
28
+ "openai/gpt-5-nano-2025-08-07": 5268910906,
29
+ "openai/gpt-5-codex": 3729849444,
30
+ "openai/gpt-4o": 1625824423,
31
+ "openai/gpt-4.1-nano-2025-04-14": 1510745343,
32
+ "Others": 4278042942
33
+ }
34
+ },
35
+ {
36
+ "x": "2025-10-10 00:00:00",
37
+ "ys": {
38
+ "openai/gpt-4.1-mini-2025-04-14": 11832514425,
39
+ "openai/gpt-4o-mini": 10871577269,
40
+ "openai/gpt-5-2025-08-07": 8950568840,
41
+ "openai/gpt-5-nano-2025-08-07": 7444508227,
42
+ "openai/gpt-5-mini-2025-08-07": 5511273023,
43
+ "openai/gpt-4.1-2025-04-14": 4249544899,
44
+ "openai/gpt-5-codex": 3731203254,
45
+ "openai/gpt-4.1-nano-2025-04-14": 1598957148,
46
+ "openai/gpt-5-chat-2025-08-07": 1278800565,
47
+ "Others": 3763237126
48
+ }
49
+ },
50
+ {
51
+ "x": "2025-10-11 00:00:00",
52
+ "ys": {
53
+ "openai/gpt-4o-mini": 8638564640,
54
+ "openai/gpt-4.1-mini-2025-04-14": 6745784226,
55
+ "openai/gpt-5-2025-08-07": 6589723948,
56
+ "openai/gpt-4.1-2025-04-14": 4044610023,
57
+ "openai/gpt-5-mini-2025-08-07": 3922818012,
58
+ "openai/gpt-5-nano-2025-08-07": 3080059723,
59
+ "openai/gpt-5-codex": 2636262326,
60
+ "openai/gpt-4.1-nano-2025-04-14": 1300059737,
61
+ "openai/gpt-5-chat-2025-08-07": 1248860926,
62
+ "Others": 3534308902
63
+ }
64
+ },
65
+ {
66
+ "x": "2025-10-12 00:00:00",
67
+ "ys": {
68
+ "openai/gpt-4o-mini": 7043886876,
69
+ "openai/gpt-4.1-mini-2025-04-14": 6321779466,
70
+ "openai/gpt-5-2025-08-07": 5811348229,
71
+ "openai/gpt-5-mini-2025-08-07": 4975841290,
72
+ "openai/gpt-5-nano-2025-08-07": 3743251742,
73
+ "openai/gpt-5-codex": 2837112863,
74
+ "openai/gpt-4.1-2025-04-14": 2781065055,
75
+ "openai/gpt-4.1-nano-2025-04-14": 1231996162,
76
+ "openai/gpt-5-chat-2025-08-07": 1181117563,
77
+ "Others": 3226910761
78
+ }
79
+ },
80
+ {
81
+ "x": "2025-10-13 00:00:00",
82
+ "ys": {
83
+ "openai/gpt-5-mini-2025-08-07": 9923345081,
84
+ "openai/gpt-5-2025-08-07": 9528994029,
85
+ "openai/gpt-4o-mini": 9436812371,
86
+ "openai/gpt-4.1-mini-2025-04-14": 5280944261,
87
+ "openai/gpt-4.1-2025-04-14": 3997216966,
88
+ "openai/gpt-5-codex": 3262828897,
89
+ "openai/gpt-4.1-nano-2025-04-14": 1834215569,
90
+ "openai/gpt-5-nano-2025-08-07": 1822010417,
91
+ "openai/gpt-5-chat-2025-08-07": 1488236663,
92
+ "Others": 5030070505
93
+ }
94
+ },
95
+ {
96
+ "x": "2025-10-14 00:00:00",
97
+ "ys": {
98
+ "openai/gpt-5-mini-2025-08-07": 12281075871,
99
+ "openai/gpt-4o-mini": 10492640733,
100
+ "openai/gpt-5-2025-08-07": 10166100550,
101
+ "openai/gpt-4.1-mini-2025-04-14": 7545157916,
102
+ "openai/gpt-4.1-2025-04-14": 4315778507,
103
+ "openai/gpt-5-codex": 3516736682,
104
+ "openai/gpt-5-nano-2025-08-07": 2107545252,
105
+ "openai/gpt-4.1-nano-2025-04-14": 2052570447,
106
+ "openai/gpt-5-chat-2025-08-07": 1603645701,
107
+ "Others": 4490992171
108
+ }
109
+ },
110
+ {
111
+ "x": "2025-10-15 00:00:00",
112
+ "ys": {
113
+ "openai/gpt-5-2025-08-07": 9731381242,
114
+ "openai/gpt-4o-mini": 9646805739,
115
+ "openai/gpt-5-mini-2025-08-07": 8618660386,
116
+ "openai/gpt-4.1-mini-2025-04-14": 6993223828,
117
+ "openai/gpt-4.1-2025-04-14": 4558184450,
118
+ "openai/gpt-5-codex": 3697076138,
119
+ "openai/gpt-4o": 2287212953,
120
+ "openai/gpt-4.1-nano-2025-04-14": 1911823441,
121
+ "openai/gpt-5-chat-2025-08-07": 1626909933,
122
+ "Others": 4794041062
123
+ }
124
+ },
125
+ {
126
+ "x": "2025-10-16 00:00:00",
127
+ "ys": {
128
+ "openai/gpt-4o-mini": 9549923376,
129
+ "openai/gpt-5-2025-08-07": 9473798156,
130
+ "openai/gpt-5-mini-2025-08-07": 8744853713,
131
+ "openai/gpt-4.1-mini-2025-04-14": 7761777220,
132
+ "openai/gpt-4.1-2025-04-14": 4966132849,
133
+ "openai/gpt-5-codex": 3817451381,
134
+ "openai/gpt-5-nano-2025-08-07": 1913428495,
135
+ "openai/gpt-5-chat-2025-08-07": 1588737549,
136
+ "openai/gpt-4.1-nano-2025-04-14": 1576833889,
137
+ "Others": 4854990932
138
+ }
139
+ },
140
+ {
141
+ "x": "2025-10-17 00:00:00",
142
+ "ys": {
143
+ "openai/gpt-4o-mini": 9726693027,
144
+ "openai/gpt-5-mini-2025-08-07": 8162964312,
145
+ "openai/gpt-5-2025-08-07": 8115248682,
146
+ "openai/gpt-4.1-mini-2025-04-14": 5719858612,
147
+ "openai/gpt-4.1-2025-04-14": 3737102877,
148
+ "openai/gpt-5-codex": 3556449905,
149
+ "openai/gpt-5-nano-2025-08-07": 1699821205,
150
+ "openai/gpt-4.1-nano-2025-04-14": 1585801089,
151
+ "openai/gpt-5-chat-2025-08-07": 1284443598,
152
+ "Others": 3533085510
153
+ }
154
+ },
155
+ {
156
+ "x": "2025-10-18 00:00:00",
157
+ "ys": {
158
+ "openai/gpt-5-2025-08-07": 10530411999,
159
+ "openai/gpt-4o-mini": 8719297846,
160
+ "openai/gpt-5-mini-2025-08-07": 5423631644,
161
+ "openai/gpt-4.1-mini-2025-04-14": 4232611170,
162
+ "openai/gpt-5-codex": 2646801685,
163
+ "openai/gpt-4.1-2025-04-14": 2325660764,
164
+ "openai/gpt-5-nano-2025-08-07": 1640530173,
165
+ "openai/gpt-4.1-nano-2025-04-14": 1425141514,
166
+ "openai/gpt-5-chat-2025-08-07": 1128159842,
167
+ "Others": 3442644621
168
+ }
169
+ },
170
+ {
171
+ "x": "2025-10-19 00:00:00",
172
+ "ys": {
173
+ "openai/gpt-4o-mini": 11629324061,
174
+ "openai/gpt-5-2025-08-07": 10304906616,
175
+ "openai/gpt-5-mini-2025-08-07": 5355785477,
176
+ "openai/gpt-4.1-mini-2025-04-14": 3133007812,
177
+ "openai/gpt-5-codex": 2779660135,
178
+ "openai/gpt-4.1-2025-04-14": 2704839288,
179
+ "openai/gpt-5-nano-2025-08-07": 1481321663,
180
+ "openai/gpt-4.1-nano-2025-04-14": 1104939352,
181
+ "openai/gpt-5-chat-2025-08-07": 1102591700,
182
+ "Others": 3322152735
183
+ }
184
+ },
185
+ {
186
+ "x": "2025-10-20 00:00:00",
187
+ "ys": {
188
+ "openai/gpt-4o-mini": 14022558627,
189
+ "openai/gpt-5-mini-2025-08-07": 8158709087,
190
+ "openai/gpt-5-2025-08-07": 7607833408,
191
+ "openai/gpt-4.1-mini-2025-04-14": 6576258781,
192
+ "openai/gpt-5-nano-2025-08-07": 5888682042,
193
+ "openai/gpt-4.1-2025-04-14": 4404881516,
194
+ "openai/gpt-5-codex": 2804083688,
195
+ "openai/gpt-5-chat-2025-08-07": 1503730860,
196
+ "openai/gpt-4o": 1377210436,
197
+ "Others": 4173528921
198
+ }
199
+ },
200
+ {
201
+ "x": "2025-10-21 00:00:00",
202
+ "ys": {
203
+ "openai/gpt-4o-mini": 15268831038,
204
+ "openai/gpt-5-mini-2025-08-07": 10173512342,
205
+ "openai/gpt-5-nano-2025-08-07": 8798971793,
206
+ "openai/gpt-5-2025-08-07": 8332734186,
207
+ "openai/gpt-4.1-mini-2025-04-14": 8220046047,
208
+ "openai/gpt-4.1-2025-04-14": 5110107428,
209
+ "openai/gpt-5-codex": 3231650607,
210
+ "openai/gpt-4.1-nano-2025-04-14": 1956509247,
211
+ "openai/gpt-5-chat-2025-08-07": 1474633076,
212
+ "Others": 4912597890
213
+ }
214
+ },
215
+ {
216
+ "x": "2025-10-22 00:00:00",
217
+ "ys": {
218
+ "openai/gpt-4o-mini": 15398712085,
219
+ "openai/gpt-5-mini-2025-08-07": 9478655593,
220
+ "openai/gpt-5-2025-08-07": 8113790342,
221
+ "openai/gpt-5-nano-2025-08-07": 7622324756,
222
+ "openai/gpt-4.1-mini-2025-04-14": 4754143679,
223
+ "openai/gpt-4.1-2025-04-14": 4469083739,
224
+ "openai/gpt-5-codex": 2538956643,
225
+ "openai/gpt-4.1-nano-2025-04-14": 1677816638,
226
+ "openai/gpt-5-chat-2025-08-07": 1603369687,
227
+ "Others": 4628365533
228
+ }
229
+ },
230
+ {
231
+ "x": "2025-10-23 00:00:00",
232
+ "ys": {
233
+ "openai/gpt-4o-mini": 14125266264,
234
+ "openai/gpt-5-mini-2025-08-07": 9223809986,
235
+ "openai/gpt-5-2025-08-07": 8448550987,
236
+ "openai/gpt-5-nano-2025-08-07": 8386135800,
237
+ "openai/gpt-4.1-2025-04-14": 7128114660,
238
+ "openai/gpt-4.1-mini-2025-04-14": 4728430573,
239
+ "openai/gpt-5-codex": 2524369397,
240
+ "openai/gpt-4o": 1659824501,
241
+ "openai/gpt-4.1-nano-2025-04-14": 1566471580,
242
+ "Others": 4586075873
243
+ }
244
+ },
245
+ {
246
+ "x": "2025-10-24 00:00:00",
247
+ "ys": {
248
+ "openai/gpt-4o-mini": 13690739304,
249
+ "openai/gpt-5-nano-2025-08-07": 8776257300,
250
+ "openai/gpt-5-2025-08-07": 8150334230,
251
+ "openai/gpt-5-mini-2025-08-07": 6543269375,
252
+ "openai/gpt-4.1-2025-04-14": 5458297648,
253
+ "openai/gpt-4.1-mini-2025-04-14": 5292949562,
254
+ "openai/gpt-5-codex": 2721917030,
255
+ "openai/gpt-5-chat-2025-08-07": 1454835901,
256
+ "openai/gpt-4.1-nano-2025-04-14": 1341667315,
257
+ "Others": 4222743867
258
+ }
259
+ },
260
+ {
261
+ "x": "2025-10-25 00:00:00",
262
+ "ys": {
263
+ "openai/gpt-4o-mini": 11544269303,
264
+ "openai/gpt-5-2025-08-07": 6289305568,
265
+ "openai/gpt-5-mini-2025-08-07": 4493320774,
266
+ "openai/gpt-4.1-mini-2025-04-14": 3526730380,
267
+ "openai/gpt-5-nano-2025-08-07": 3085997686,
268
+ "openai/gpt-4.1-2025-04-14": 2836471080,
269
+ "openai/gpt-5-codex": 2367670007,
270
+ "openai/gpt-5-chat-2025-08-07": 1179158739,
271
+ "openai/gpt-4.1-nano-2025-04-14": 1066409619,
272
+ "Others": 3016841740
273
+ }
274
+ },
275
+ {
276
+ "x": "2025-10-26 00:00:00",
277
+ "ys": {
278
+ "openai/gpt-4o-mini": 10140024132,
279
+ "openai/gpt-5-mini-2025-08-07": 5947269968,
280
+ "openai/gpt-5-2025-08-07": 5403619403,
281
+ "openai/gpt-4.1-mini-2025-04-14": 3609140198,
282
+ "openai/gpt-5-codex": 2945683395,
283
+ "openai/gpt-4.1-2025-04-14": 2546563685,
284
+ "openai/gpt-5-nano-2025-08-07": 1574656223,
285
+ "openai/gpt-5-chat-2025-08-07": 1132700025,
286
+ "openai/gpt-4.1-nano-2025-04-14": 950446667,
287
+ "Others": 2968237059
288
+ }
289
+ },
290
+ {
291
+ "x": "2025-10-27 00:00:00",
292
+ "ys": {
293
+ "openai/gpt-4o-mini": 11022207811,
294
+ "openai/gpt-5-2025-08-07": 8232639886,
295
+ "openai/gpt-5-mini-2025-08-07": 7767985718,
296
+ "openai/gpt-5-nano-2025-08-07": 7173448435,
297
+ "openai/gpt-4.1-2025-04-14": 5975246551,
298
+ "openai/gpt-4.1-mini-2025-04-14": 5404146736,
299
+ "openai/gpt-5-codex": 4018356793,
300
+ "openai/gpt-5-chat-2025-08-07": 1601954325,
301
+ "openai/gpt-4.1-nano-2025-04-14": 1562665162,
302
+ "Others": 4564489013
303
+ }
304
+ },
305
+ {
306
+ "x": "2025-10-28 00:00:00",
307
+ "ys": {
308
+ "openai/gpt-4o-mini": 11552367632,
309
+ "openai/gpt-5-2025-08-07": 8777233326,
310
+ "openai/gpt-5-mini-2025-08-07": 8134869487,
311
+ "openai/gpt-4.1-mini-2025-04-14": 5477854797,
312
+ "openai/gpt-4.1-2025-04-14": 5199446166,
313
+ "openai/gpt-5-codex": 3920977878,
314
+ "openai/gpt-5-nano-2025-08-07": 2160604663,
315
+ "openai/gpt-5-chat-2025-08-07": 1799607972,
316
+ "openai/gpt-4o": 1590720851,
317
+ "Others": 5113615538
318
+ }
319
+ },
320
+ {
321
+ "x": "2025-10-29 00:00:00",
322
+ "ys": {
323
+ "openai/gpt-5-mini-2025-08-07": 15959942824,
324
+ "openai/gpt-4o-mini": 12214006744,
325
+ "openai/gpt-5-2025-08-07": 9057842503,
326
+ "openai/gpt-4.1-mini-2025-04-14": 5194801242,
327
+ "openai/gpt-4.1-2025-04-14": 4303009381,
328
+ "openai/gpt-5-codex": 3517762327,
329
+ "openai/gpt-4.1-nano-2025-04-14": 3009356855,
330
+ "openai/gpt-5-nano-2025-08-07": 2257495109,
331
+ "openai/gpt-5-chat-2025-08-07": 1883915391,
332
+ "Others": 5919151203
333
+ }
334
+ },
335
+ {
336
+ "x": "2025-10-30 00:00:00",
337
+ "ys": {
338
+ "openai/gpt-4o-mini": 10005349673,
339
+ "openai/gpt-5-mini-2025-08-07": 8590994442,
340
+ "openai/gpt-5-2025-08-07": 6815630615,
341
+ "openai/gpt-4.1-mini-2025-04-14": 5975431865,
342
+ "openai/gpt-4.1-2025-04-14": 4504838364,
343
+ "openai/gpt-5-codex": 3746341607,
344
+ "openai/gpt-5-nano-2025-08-07": 1789229206,
345
+ "openai/gpt-5-chat-2025-08-07": 1653559118,
346
+ "openai/gpt-4o": 1647027805,
347
+ "Others": 4943092612
348
+ }
349
+ },
350
+ {
351
+ "x": "2025-10-31 00:00:00",
352
+ "ys": {
353
+ "openai/gpt-4o-mini": 8451532844,
354
+ "openai/gpt-5-mini-2025-08-07": 8039880743,
355
+ "openai/gpt-5-2025-08-07": 7352574066,
356
+ "openai/gpt-4.1-mini-2025-04-14": 5335529491,
357
+ "openai/gpt-4.1-2025-04-14": 4108633667,
358
+ "openai/gpt-5-codex": 3511249677,
359
+ "openai/gpt-5-nano-2025-08-07": 2068370833,
360
+ "openai/gpt-4o": 1632611582,
361
+ "openai/gpt-5-chat-2025-08-07": 1510839783,
362
+ "Others": 4082930949
363
+ }
364
+ },
365
+ {
366
+ "x": "2025-11-01 00:00:00",
367
+ "ys": {
368
+ "openai/gpt-4o-mini": 7525945837,
369
+ "openai/gpt-5-mini-2025-08-07": 5728151507,
370
+ "openai/gpt-5-2025-08-07": 4966292328,
371
+ "openai/gpt-4.1-mini-2025-04-14": 4673612462,
372
+ "openai/gpt-4.1-2025-04-14": 3886585724,
373
+ "openai/gpt-5-nano-2025-08-07": 2520523099,
374
+ "openai/gpt-5-codex": 2176956196,
375
+ "openai/gpt-4.1-nano-2025-04-14": 2090189687,
376
+ "openai/gpt-4o": 1252191354,
377
+ "Others": 3429187154
378
+ }
379
+ },
380
+ {
381
+ "x": "2025-11-02 00:00:00",
382
+ "ys": {
383
+ "openai/gpt-4o-mini": 7689189205,
384
+ "openai/gpt-5-mini-2025-08-07": 5583261683,
385
+ "openai/gpt-5-2025-08-07": 5298896905,
386
+ "openai/gpt-4.1-mini-2025-04-14": 4709887248,
387
+ "openai/gpt-4.1-2025-04-14": 3378416041,
388
+ "openai/gpt-5-codex": 2754782570,
389
+ "openai/gpt-5-nano-2025-08-07": 2056484131,
390
+ "openai/gpt-4.1-nano-2025-04-14": 1286469054,
391
+ "openai/gpt-5-chat-2025-08-07": 1198054410,
392
+ "Others": 3487593243
393
+ }
394
+ },
395
+ {
396
+ "x": "2025-11-03 00:00:00",
397
+ "ys": {
398
+ "openai/gpt-4o-mini": 9339357834,
399
+ "openai/gpt-5-mini-2025-08-07": 6889272384,
400
+ "openai/gpt-5-2025-08-07": 6885454802,
401
+ "openai/gpt-4.1-mini-2025-04-14": 6059643906,
402
+ "openai/gpt-5-nano-2025-08-07": 4583895252,
403
+ "openai/gpt-4.1-2025-04-14": 3401343139,
404
+ "openai/gpt-5-codex": 3039382320,
405
+ "openai/o3-2025-04-16": 2123200993,
406
+ "openai/gpt-4o": 1666762177,
407
+ "Others": 5869323490
408
+ }
409
+ },
410
+ {
411
+ "x": "2025-11-04 00:00:00",
412
+ "ys": {
413
+ "openai/gpt-4o-mini": 10947731784,
414
+ "openai/gpt-5-mini-2025-08-07": 7944926590,
415
+ "openai/gpt-4.1-mini-2025-04-14": 7352915697,
416
+ "openai/gpt-5-2025-08-07": 7019214898,
417
+ "openai/gpt-4.1-2025-04-14": 4896090434,
418
+ "openai/gpt-5-nano-2025-08-07": 4182894359,
419
+ "openai/gpt-5-codex": 2913932812,
420
+ "openai/gpt-4.1-nano-2025-04-14": 1784263236,
421
+ "openai/gpt-5-chat-2025-08-07": 1661108552,
422
+ "Others": 6495412660
423
+ }
424
+ },
425
+ {
426
+ "x": "2025-11-05 00:00:00",
427
+ "ys": {
428
+ "openai/gpt-4o-mini": 10609120647,
429
+ "openai/gpt-5-2025-08-07": 8558487298,
430
+ "openai/gpt-4.1-mini-2025-04-14": 6887790339,
431
+ "openai/gpt-5-mini-2025-08-07": 6660646487,
432
+ "openai/gpt-4.1-2025-04-14": 4894090545,
433
+ "openai/gpt-5-codex": 3384198729,
434
+ "openai/gpt-4o": 2234195123,
435
+ "openai/gpt-5-nano-2025-08-07": 1920619282,
436
+ "openai/gpt-5-chat-2025-08-07": 1900430230,
437
+ "Others": 6189465473
438
+ }
439
+ },
440
+ {
441
+ "x": "2025-11-06 00:00:00",
442
+ "ys": {
443
+ "openai/gpt-4o-mini": 11915893152,
444
+ "openai/gpt-5-2025-08-07": 9465589977,
445
+ "openai/gpt-5-mini-2025-08-07": 7926785060,
446
+ "openai/gpt-4.1-2025-04-14": 6674145665,
447
+ "openai/gpt-4.1-mini-2025-04-14": 6009666654,
448
+ "openai/gpt-5-codex": 3237034104,
449
+ "openai/gpt-5-nano-2025-08-07": 3140012242,
450
+ "openai/gpt-4.1-nano-2025-04-14": 2012027907,
451
+ "openai/gpt-5-chat-2025-08-07": 1895636862,
452
+ "Others": 4587551901
453
+ }
454
+ },
455
+ {
456
+ "x": "2025-11-07 00:00:00",
457
+ "ys": {
458
+ "openai/gpt-4o-mini": 13394164377,
459
+ "openai/gpt-5-2025-08-07": 9624902080,
460
+ "openai/gpt-5-mini-2025-08-07": 7875544479,
461
+ "openai/gpt-4.1-mini-2025-04-14": 5029440009,
462
+ "openai/gpt-4.1-2025-04-14": 3853759516,
463
+ "openai/gpt-5-nano-2025-08-07": 3508873479,
464
+ "openai/gpt-5-codex": 3330000960,
465
+ "openai/gpt-4.1-nano-2025-04-14": 2271477893,
466
+ "openai/gpt-4o": 1796399207,
467
+ "Others": 4551442849
468
+ }
469
+ },
470
+ {
471
+ "x": "2025-11-08 00:00:00",
472
+ "ys": {
473
+ "openai/gpt-4o-mini": 8208252711,
474
+ "openai/gpt-5-2025-08-07": 8137601246,
475
+ "openai/gpt-5-mini-2025-08-07": 5323324739,
476
+ "openai/gpt-4.1-mini-2025-04-14": 4239151971,
477
+ "openai/gpt-5-codex": 3839896846,
478
+ "openai/gpt-5-nano-2025-08-07": 3015100701,
479
+ "openai/gpt-4.1-2025-04-14": 2174150892,
480
+ "openai/gpt-5-chat-2025-08-07": 1670005427,
481
+ "openai/gpt-4o": 1115519014,
482
+ "Others": 3417106374
483
+ }
484
+ },
485
+ {
486
+ "x": "2025-11-09 00:00:00",
487
+ "ys": {
488
+ "openai/gpt-4o-mini": 8585080496,
489
+ "openai/gpt-5-2025-08-07": 7017318179,
490
+ "openai/gpt-5-mini-2025-08-07": 6849626301,
491
+ "openai/gpt-5-codex": 4803748169,
492
+ "openai/gpt-4.1-mini-2025-04-14": 4414278410,
493
+ "openai/gpt-4.1-2025-04-14": 2138883950,
494
+ "openai/gpt-5-nano-2025-08-07": 1575221848,
495
+ "openai/gpt-5-chat-2025-08-07": 1240188143,
496
+ "openai/gpt-4.1-nano-2025-04-14": 1162970886,
497
+ "Others": 3316382760
498
+ }
499
+ },
500
+ {
501
+ "x": "2025-11-10 00:00:00",
502
+ "ys": {
503
+ "openai/gpt-5-2025-08-07": 12191909804,
504
+ "openai/gpt-4o-mini": 11686317044,
505
+ "openai/gpt-5-mini-2025-08-07": 11567518124,
506
+ "openai/gpt-4.1-mini-2025-04-14": 5975052569,
507
+ "openai/gpt-5-codex": 3671101559,
508
+ "openai/gpt-4o": 3503571497,
509
+ "openai/gpt-4.1-2025-04-14": 3439308656,
510
+ "openai/gpt-5-nano-2025-08-07": 2051025921,
511
+ "openai/gpt-5-chat-2025-08-07": 1870252289,
512
+ "Others": 5311330723
513
+ }
514
+ },
515
+ {
516
+ "x": "2025-11-11 00:00:00",
517
+ "ys": {
518
+ "openai/gpt-5-mini-2025-08-07": 12497252134,
519
+ "openai/gpt-4o-mini": 11895476925,
520
+ "openai/gpt-5-2025-08-07": 8890905155,
521
+ "openai/gpt-4.1-2025-04-14": 4827186757,
522
+ "openai/gpt-4.1-mini-2025-04-14": 4608544506,
523
+ "openai/gpt-5-codex": 3421096353,
524
+ "openai/gpt-5-nano-2025-08-07": 2907053610,
525
+ "openai/gpt-4o": 2467307978,
526
+ "openai/gpt-5-chat-2025-08-07": 1970844769,
527
+ "Others": 5759096736
528
+ }
529
+ },
530
+ {
531
+ "x": "2025-11-12 00:00:00",
532
+ "ys": {
533
+ "openai/gpt-5-mini-2025-08-07": 12579718125,
534
+ "openai/gpt-4o-mini": 11463840739,
535
+ "openai/gpt-5-2025-08-07": 10156398702,
536
+ "openai/gpt-4.1-mini-2025-04-14": 7442667600,
537
+ "openai/gpt-4.1-2025-04-14": 3980357861,
538
+ "openai/gpt-5-nano-2025-08-07": 2331157934,
539
+ "openai/gpt-5-codex": 2132715555,
540
+ "openai/gpt-5-chat-2025-08-07": 1997867834,
541
+ "openai/gpt-4o": 1433681343,
542
+ "Others": 4580048726
543
+ }
544
+ },
545
+ {
546
+ "x": "2025-11-13 00:00:00",
547
+ "ys": {
548
+ "openai/gpt-5-mini-2025-08-07": 12579918437,
549
+ "openai/gpt-4o-mini": 11493118556,
550
+ "openai/gpt-5-2025-08-07": 9341494124,
551
+ "openai/gpt-4.1-mini-2025-04-14": 7561567249,
552
+ "openai/gpt-4.1-2025-04-14": 4010332287,
553
+ "openai/gpt-5-nano-2025-08-07": 3052319851,
554
+ "openai/gpt-5-chat-2025-08-07": 2048030180,
555
+ "openai/gpt-5-codex": 1904563227,
556
+ "openai/gpt-4.1-nano-2025-04-14": 1601183650,
557
+ "Others": 6035254409
558
+ }
559
+ },
560
+ {
561
+ "x": "2025-11-14 00:00:00",
562
+ "ys": {
563
+ "openai/gpt-5-mini-2025-08-07": 11542715556,
564
+ "openai/gpt-4o-mini": 10439256436,
565
+ "openai/gpt-5-2025-08-07": 7843833066,
566
+ "openai/gpt-4.1-mini-2025-04-14": 5215117158,
567
+ "openai/gpt-5.1-20251113": 4139956240,
568
+ "openai/gpt-4.1-2025-04-14": 3537291375,
569
+ "openai/gpt-5-nano-2025-08-07": 3264076722,
570
+ "openai/gpt-5.1-codex-20251113": 2383615392,
571
+ "openai/gpt-5-chat-2025-08-07": 1608036017,
572
+ "Others": 8577242002
573
+ }
574
+ },
575
+ {
576
+ "x": "2025-11-15 00:00:00",
577
+ "ys": {
578
+ "openai/gpt-5-mini-2025-08-07": 9154524880,
579
+ "openai/gpt-4o-mini": 8164675555,
580
+ "openai/gpt-5-2025-08-07": 5081914824,
581
+ "openai/gpt-5.1-20251113": 4959604133,
582
+ "openai/gpt-4.1-mini-2025-04-14": 4552807502,
583
+ "openai/gpt-4.1-2025-04-14": 2752045398,
584
+ "openai/gpt-5-nano-2025-08-07": 2183197268,
585
+ "openai/gpt-5.1-codex-20251113": 2146781893,
586
+ "openai/gpt-5-codex": 1640281257,
587
+ "Others": 7415926126
588
+ }
589
+ },
590
+ {
591
+ "x": "2025-11-16 00:00:00",
592
+ "ys": {
593
+ "openai/gpt-5-mini-2025-08-07": 13911830880,
594
+ "openai/gpt-4o-mini": 8737260735,
595
+ "openai/gpt-5-2025-08-07": 4731867324,
596
+ "openai/gpt-5.1-20251113": 4714536420,
597
+ "openai/gpt-4.1-mini-2025-04-14": 4091412470,
598
+ "openai/gpt-5.1-codex-20251113": 2280816161,
599
+ "openai/gpt-4.1-2025-04-14": 2259412137,
600
+ "openai/gpt-5-nano-2025-08-07": 2176244622,
601
+ "openai/gpt-5-chat-2025-08-07": 1305598701,
602
+ "Others": 6551170706
603
+ }
604
+ },
605
+ {
606
+ "x": "2025-11-17 00:00:00",
607
+ "ys": {
608
+ "openai/gpt-5-mini-2025-08-07": 12750671713,
609
+ "openai/gpt-4o-mini": 11983168658,
610
+ "openai/gpt-5-2025-08-07": 7245973781,
611
+ "openai/gpt-4.1-mini-2025-04-14": 6721740967,
612
+ "openai/gpt-4.1-2025-04-14": 5048390582,
613
+ "openai/gpt-5.1-20251113": 4935960177,
614
+ "openai/gpt-5.1-codex-20251113": 3020987309,
615
+ "openai/gpt-5-nano-2025-08-07": 2522728448,
616
+ "openai/gpt-4.1-nano-2025-04-14": 1995094168,
617
+ "Others": 10611505608
618
+ }
619
+ },
620
+ {
621
+ "x": "2025-11-18 00:00:00",
622
+ "ys": {
623
+ "openai/gpt-5-mini-2025-08-07": 11471814802,
624
+ "openai/gpt-4o-mini": 10978003405,
625
+ "openai/gpt-4.1-mini-2025-04-14": 7576444798,
626
+ "openai/gpt-5-2025-08-07": 6857750762,
627
+ "openai/gpt-5.1-20251113": 6177758971,
628
+ "openai/gpt-4.1-2025-04-14": 4565690236,
629
+ "openai/gpt-5.1-codex-20251113": 3443189326,
630
+ "openai/gpt-4.1-nano-2025-04-14": 3162073346,
631
+ "openai/gpt-5.1-codex-mini-20251113": 2325582224,
632
+ "Others": 11252870660
633
+ }
634
+ },
635
+ {
636
+ "x": "2025-11-19 00:00:00",
637
+ "ys": {
638
+ "openai/gpt-5-mini-2025-08-07": 15783254121,
639
+ "openai/gpt-4o-mini": 11496268386,
640
+ "openai/gpt-4.1-mini-2025-04-14": 10251179503,
641
+ "openai/gpt-5-2025-08-07": 7132816235,
642
+ "openai/gpt-5.1-20251113": 6768030938,
643
+ "openai/gpt-4.1-2025-04-14": 4708482995,
644
+ "openai/gpt-4.1-nano-2025-04-14": 4040316853,
645
+ "openai/gpt-5.1-codex-20251113": 2796397424,
646
+ "openai/gpt-5-nano-2025-08-07": 2576892071,
647
+ "Others": 9760211027
648
+ }
649
+ },
650
+ {
651
+ "x": "2025-11-20 00:00:00",
652
+ "ys": {
653
+ "openai/gpt-5-mini-2025-08-07": 16187238063,
654
+ "openai/gpt-4o-mini": 11419633789,
655
+ "openai/gpt-5-2025-08-07": 9556971490,
656
+ "openai/gpt-4.1-mini-2025-04-14": 7268490648,
657
+ "openai/gpt-5.1-20251113": 6522174769,
658
+ "openai/gpt-4.1-2025-04-14": 3652223115,
659
+ "openai/gpt-5.1-codex-20251113": 3377011200,
660
+ "openai/gpt-5-nano-2025-08-07": 3035713450,
661
+ "openai/gpt-4.1-nano-2025-04-14": 2383947700,
662
+ "Others": 9483870016
663
+ }
664
+ },
665
+ {
666
+ "x": "2025-11-21 00:00:00",
667
+ "ys": {
668
+ "openai/gpt-5-mini-2025-08-07": 14344362840,
669
+ "openai/gpt-5-2025-08-07": 11725214325,
670
+ "openai/gpt-4o-mini": 11006956843,
671
+ "openai/gpt-5.1-20251113": 9473192641,
672
+ "openai/gpt-4.1-mini-2025-04-14": 7304182645,
673
+ "openai/gpt-5-nano-2025-08-07": 3630683385,
674
+ "openai/gpt-4.1-2025-04-14": 3401180150,
675
+ "openai/gpt-5.1-codex-20251113": 3221168477,
676
+ "openai/gpt-4.1-nano-2025-04-14": 2537798529,
677
+ "Others": 9269314143
678
+ }
679
+ },
680
+ {
681
+ "x": "2025-11-22 00:00:00",
682
+ "ys": {
683
+ "openai/gpt-4.1-mini-2025-04-14": 19825872701,
684
+ "openai/gpt-4o-mini": 9416285024,
685
+ "openai/gpt-5-mini-2025-08-07": 9190828114,
686
+ "openai/gpt-5.1-20251113": 8441406668,
687
+ "openai/gpt-5-2025-08-07": 7731861426,
688
+ "openai/gpt-5-nano-2025-08-07": 2673202712,
689
+ "openai/gpt-5.1-codex-20251113": 2416481952,
690
+ "openai/gpt-4.1-nano-2025-04-14": 2109275782,
691
+ "openai/gpt-4.1-2025-04-14": 2075761875,
692
+ "Others": 5514633387
693
+ }
694
+ },
695
+ {
696
+ "x": "2025-11-23 00:00:00",
697
+ "ys": {
698
+ "openai/gpt-4.1-mini-2025-04-14": 22103575661,
699
+ "openai/gpt-5-mini-2025-08-07": 9135905094,
700
+ "openai/gpt-4o-mini": 8807149787,
701
+ "openai/gpt-5-2025-08-07": 4679258375,
702
+ "openai/gpt-5.1-20251113": 4492742000,
703
+ "openai/gpt-5-nano-2025-08-07": 2506890658,
704
+ "openai/gpt-5.1-codex-20251113": 2425925211,
705
+ "openai/gpt-4.1-nano-2025-04-14": 2295470134,
706
+ "openai/gpt-4.1-2025-04-14": 2057266003,
707
+ "Others": 6097021914
708
+ }
709
+ },
710
+ {
711
+ "x": "2025-11-24 00:00:00",
712
+ "ys": {
713
+ "openai/gpt-4.1-mini-2025-04-14": 20765223205,
714
+ "openai/gpt-5-mini-2025-08-07": 14796994824,
715
+ "openai/gpt-4o-mini": 12219375561,
716
+ "openai/gpt-5-2025-08-07": 9102872618,
717
+ "openai/gpt-5.1-20251113": 6221082859,
718
+ "openai/gpt-4.1-2025-04-14": 3825482904,
719
+ "openai/gpt-5.1-codex-20251113": 3050259228,
720
+ "openai/gpt-5-nano-2025-08-07": 2741502533,
721
+ "openai/gpt-4o": 2419667106,
722
+ "Others": 8610706535
723
+ }
724
+ },
725
+ {
726
+ "x": "2025-11-25 00:00:00",
727
+ "ys": {
728
+ "openai/gpt-4.1-mini-2025-04-14": 17366984020,
729
+ "openai/gpt-5-mini-2025-08-07": 16103895261,
730
+ "openai/gpt-4o-mini": 12098324779,
731
+ "openai/gpt-5-2025-08-07": 9735633328,
732
+ "openai/gpt-5.1-20251113": 6945301130,
733
+ "openai/gpt-5-nano-2025-08-07": 4439241292,
734
+ "openai/gpt-4.1-2025-04-14": 4345132693,
735
+ "openai/gpt-5.1-codex-20251113": 3387592408,
736
+ "openai/gpt-4.1-nano-2025-04-14": 2931739230,
737
+ "Others": 10073715261
738
+ }
739
+ },
740
+ {
741
+ "x": "2025-11-26 00:00:00",
742
+ "ys": {
743
+ "openai/gpt-5-mini-2025-08-07": 17162135269,
744
+ "openai/gpt-4o-mini": 14418067411,
745
+ "openai/gpt-5-2025-08-07": 11680835515,
746
+ "openai/gpt-4.1-mini-2025-04-14": 9615577194,
747
+ "openai/gpt-5-nano-2025-08-07": 6492742245,
748
+ "openai/gpt-5.1-20251113": 5839146422,
749
+ "openai/gpt-4.1-2025-04-14": 4122274103,
750
+ "openai/gpt-5.1-codex-20251113": 3086527344,
751
+ "openai/gpt-4.1-nano-2025-04-14": 2541579927,
752
+ "Others": 8858492074
753
+ }
754
+ },
755
+ {
756
+ "x": "2025-11-27 00:00:00",
757
+ "ys": {
758
+ "openai/gpt-4o-mini": 19417611683,
759
+ "openai/gpt-5-mini-2025-08-07": 14402954051,
760
+ "openai/gpt-5-2025-08-07": 10754447673,
761
+ "openai/gpt-5.1-20251113": 6254171625,
762
+ "openai/gpt-4.1-mini-2025-04-14": 4757005695,
763
+ "openai/gpt-4.1-2025-04-14": 3651042116,
764
+ "openai/gpt-5-nano-2025-08-07": 3517497304,
765
+ "openai/gpt-5.1-codex-20251113": 2632285526,
766
+ "openai/gpt-4.1-nano-2025-04-14": 2512889808,
767
+ "Others": 7823245454
768
+ }
769
+ },
770
+ {
771
+ "x": "2025-11-28 00:00:00",
772
+ "ys": {
773
+ "openai/gpt-5-nano-2025-08-07": 12593619862,
774
+ "openai/gpt-5-mini-2025-08-07": 12325920220,
775
+ "openai/gpt-4o-mini": 11019482351,
776
+ "openai/gpt-5.1-20251113": 6063776945,
777
+ "openai/gpt-5-2025-08-07": 4833117157,
778
+ "openai/gpt-4.1-mini-2025-04-14": 4207937558,
779
+ "openai/gpt-4.1-2025-04-14": 3137617507,
780
+ "openai/gpt-5.1-codex-20251113": 2295213290,
781
+ "openai/gpt-4.1-nano-2025-04-14": 2075736412,
782
+ "Others": 8090882320
783
+ }
784
+ },
785
+ {
786
+ "x": "2025-11-29 00:00:00",
787
+ "ys": {
788
+ "openai/gpt-5-nano-2025-08-07": 20518083596,
789
+ "openai/gpt-5-mini-2025-08-07": 13752468894,
790
+ "openai/gpt-4o-mini": 10074168519,
791
+ "openai/gpt-5.1-20251113": 3781858583,
792
+ "openai/gpt-5-2025-08-07": 3238548536,
793
+ "openai/gpt-4.1-mini-2025-04-14": 2831127519,
794
+ "openai/gpt-5.1-codex-20251113": 2443371200,
795
+ "openai/gpt-4.1-2025-04-14": 2131733155,
796
+ "openai/gpt-4.1-nano-2025-04-14": 2042031181,
797
+ "Others": 5768745065
798
+ }
799
+ },
800
+ {
801
+ "x": "2025-11-30 00:00:00",
802
+ "ys": {
803
+ "openai/gpt-5-mini-2025-08-07": 13348821250,
804
+ "openai/gpt-4o-mini": 9994426953,
805
+ "openai/gpt-5-nano-2025-08-07": 6986814084,
806
+ "openai/gpt-4.1-mini-2025-04-14": 5937945147,
807
+ "openai/gpt-5.1-20251113": 4074339169,
808
+ "openai/gpt-5-2025-08-07": 3448848981,
809
+ "openai/gpt-5.1-codex-20251113": 2366575715,
810
+ "openai/gpt-4.1-2025-04-14": 2130238924,
811
+ "openai/gpt-4.1-nano-2025-04-14": 1901621060,
812
+ "Others": 5817006658
813
+ }
814
+ },
815
+ {
816
+ "x": "2025-12-01 00:00:00",
817
+ "ys": {
818
+ "openai/gpt-5-mini-2025-08-07": 15527953321,
819
+ "openai/gpt-5-nano-2025-08-07": 13311136838,
820
+ "openai/gpt-4o-mini": 12012963489,
821
+ "openai/gpt-4.1-mini-2025-04-14": 6041746697,
822
+ "openai/gpt-5.1-20251113": 5521205459,
823
+ "openai/gpt-5-2025-08-07": 5320044240,
824
+ "openai/gpt-4.1-2025-04-14": 4402935316,
825
+ "openai/gpt-4.1-nano-2025-04-14": 3034447986,
826
+ "openai/gpt-5.1-codex-20251113": 2550076267,
827
+ "Others": 9072575333
828
+ }
829
+ },
830
+ {
831
+ "x": "2025-12-02 00:00:00",
832
+ "ys": {
833
+ "openai/gpt-5-mini-2025-08-07": 16818894572,
834
+ "openai/gpt-4o-mini": 13464888623,
835
+ "openai/gpt-5.1-20251113": 7069281346,
836
+ "openai/gpt-5-nano-2025-08-07": 7027982667,
837
+ "openai/gpt-4.1-mini-2025-04-14": 6855194755,
838
+ "openai/gpt-4.1-2025-04-14": 5564297012,
839
+ "openai/gpt-5-2025-08-07": 5115284358,
840
+ "openai/gpt-4.1-nano-2025-04-14": 4954873828,
841
+ "openai/gpt-5.1-codex-20251113": 2793611954,
842
+ "Others": 10432942448
843
+ }
844
+ },
845
+ {
846
+ "x": "2025-12-03 00:00:00",
847
+ "ys": {
848
+ "openai/gpt-4o-mini": 16031063798,
849
+ "openai/gpt-5-mini-2025-08-07": 12425743580,
850
+ "openai/gpt-4.1-mini-2025-04-14": 6357469514,
851
+ "openai/gpt-5.1-20251113": 6099242896,
852
+ "openai/gpt-4.1-2025-04-14": 6062650895,
853
+ "openai/gpt-5-2025-08-07": 5622948700,
854
+ "openai/gpt-5-nano-2025-08-07": 5298252219,
855
+ "openai/gpt-4.1-nano-2025-04-14": 2983395613,
856
+ "openai/gpt-4o": 2311548989,
857
+ "Others": 9971545460
858
+ }
859
+ },
860
+ {
861
+ "x": "2025-12-04 00:00:00",
862
+ "ys": {
863
+ "openai/gpt-4o-mini": 29477839586,
864
+ "openai/gpt-5-mini-2025-08-07": 11992098197,
865
+ "openai/gpt-4.1-2025-04-14": 8207774148,
866
+ "openai/gpt-5.1-20251113": 7213790555,
867
+ "openai/gpt-4.1-mini-2025-04-14": 6581936249,
868
+ "openai/gpt-5-2025-08-07": 5245963142,
869
+ "openai/gpt-5-nano-2025-08-07": 3982929587,
870
+ "openai/gpt-5.1-codex-20251113": 2519034503,
871
+ "openai/gpt-4.1-nano-2025-04-14": 2194374054,
872
+ "Others": 10572409875
873
+ }
874
+ },
875
+ {
876
+ "x": "2025-12-05 00:00:00",
877
+ "ys": {
878
+ "openai/gpt-4o-mini": 12844277057,
879
+ "openai/gpt-5-mini-2025-08-07": 12437677969,
880
+ "openai/gpt-4.1-2025-04-14": 8317558146,
881
+ "openai/gpt-5-nano-2025-08-07": 6141179452,
882
+ "openai/gpt-4.1-mini-2025-04-14": 5999101901,
883
+ "openai/gpt-5.1-20251113": 5509140335,
884
+ "openai/gpt-5-2025-08-07": 4618531352,
885
+ "openai/gpt-5.1-codex-20251113": 2118277168,
886
+ "openai/gpt-5-chat-2025-08-07": 1898701653,
887
+ "Others": 9990650368
888
+ }
889
+ },
890
+ {
891
+ "x": "2025-12-06 00:00:00",
892
+ "ys": {
893
+ "openai/gpt-4o-mini": 9764431341,
894
+ "openai/gpt-5-mini-2025-08-07": 8515562008,
895
+ "openai/gpt-4.1-2025-04-14": 6912588627,
896
+ "openai/gpt-5.1-20251113": 4450524232,
897
+ "openai/gpt-4.1-mini-2025-04-14": 3746561235,
898
+ "openai/gpt-5-nano-2025-08-07": 3220584707,
899
+ "openai/gpt-5-2025-08-07": 2449361443,
900
+ "openai/gpt-5.1-chat-20251113": 1803830962,
901
+ "openai/gpt-5.1-codex-20251113": 1612987078,
902
+ "Others": 8427737773
903
+ }
904
+ },
905
+ {
906
+ "x": "2025-12-07 00:00:00",
907
+ "ys": {
908
+ "openai/gpt-5-mini-2025-08-07": 9403744153,
909
+ "openai/gpt-4o-mini": 8914505487,
910
+ "openai/gpt-4.1-2025-04-14": 6028784892,
911
+ "openai/gpt-5.1-20251113": 5620864857,
912
+ "openai/gpt-4.1-mini-2025-04-14": 3356872638,
913
+ "openai/gpt-5-2025-08-07": 3098336713,
914
+ "openai/gpt-5-nano-2025-08-07": 2422321030,
915
+ "openai/gpt-4.1-nano-2025-04-14": 1816506832,
916
+ "openai/gpt-5.1-codex-20251113": 1543753698,
917
+ "Others": 8283418098
918
+ }
919
+ },
920
+ {
921
+ "x": "2025-12-08 00:00:00",
922
+ "ys": {
923
+ "openai/gpt-5-mini-2025-08-07": 14285515379,
924
+ "openai/gpt-4o-mini": 12573078138,
925
+ "openai/gpt-4.1-2025-04-14": 11326622560,
926
+ "openai/gpt-5-nano-2025-08-07": 10610616832,
927
+ "openai/gpt-5.1-20251113": 8048969095,
928
+ "openai/gpt-4.1-mini-2025-04-14": 5869658177,
929
+ "openai/gpt-5-2025-08-07": 4573196592,
930
+ "openai/gpt-5.1-codex-20251113": 1925515111,
931
+ "openai/gpt-4.1-nano-2025-04-14": 1669846747,
932
+ "Others": 11059865908
933
+ }
934
+ },
935
+ {
936
+ "x": "2025-12-09 00:00:00",
937
+ "ys": {
938
+ "openai/gpt-5-mini-2025-08-07": 16021150559,
939
+ "openai/gpt-4o-mini": 11891185373,
940
+ "openai/gpt-4.1-2025-04-14": 10935439143,
941
+ "openai/gpt-5.1-20251113": 8183412818,
942
+ "openai/gpt-5-nano-2025-08-07": 5508981443,
943
+ "openai/gpt-4.1-mini-2025-04-14": 5294288601,
944
+ "openai/text-embedding-3-small": 4925991898,
945
+ "openai/gpt-5-2025-08-07": 4617679020,
946
+ "openai/gpt-4o": 2483699988,
947
+ "Others": 13500955101
948
+ }
949
+ },
950
+ {
951
+ "x": "2025-12-10 00:00:00",
952
+ "ys": {
953
+ "openai/gpt-5-mini-2025-08-07": 14885062694,
954
+ "openai/gpt-4o-mini": 13131088326,
955
+ "openai/gpt-4.1-2025-04-14": 11525456321,
956
+ "openai/gpt-5.1-20251113": 8130153864,
957
+ "openai/gpt-5-2025-08-07": 6004538453,
958
+ "openai/gpt-4.1-mini-2025-04-14": 5477829738,
959
+ "openai/gpt-5-nano-2025-08-07": 4665742055,
960
+ "openai/gpt-4.1-nano-2025-04-14": 2297882115,
961
+ "openai/gpt-5.1-codex-20251113": 2140054334,
962
+ "Others": 12291705225
963
+ }
964
+ },
965
+ {
966
+ "x": "2025-12-11 00:00:00",
967
+ "ys": {
968
+ "openai/gpt-4o-mini": 14050764792,
969
+ "openai/gpt-5-mini-2025-08-07": 12069846814,
970
+ "openai/gpt-4.1-2025-04-14": 10527239216,
971
+ "openai/gpt-5.1-20251113": 9488857587,
972
+ "openai/gpt-4.1-mini-2025-04-14": 7024127035,
973
+ "openai/gpt-5-2025-08-07": 6138930015,
974
+ "openai/gpt-5-nano-2025-08-07": 4800207328,
975
+ "openai/gpt-4.1-nano-2025-04-14": 2216831972,
976
+ "openai/gpt-5.2-20251211": 2199580987,
977
+ "Others": 13009429173
978
+ }
979
+ },
980
+ {
981
+ "x": "2025-12-12 00:00:00",
982
+ "ys": {
983
+ "openai/gpt-4o-mini": 13665805827,
984
+ "openai/gpt-5.2-20251211": 10897417865,
985
+ "openai/gpt-5-mini-2025-08-07": 10632821164,
986
+ "openai/gpt-4.1-2025-04-14": 10543109660,
987
+ "openai/gpt-5.1-20251113": 7114663659,
988
+ "openai/gpt-4.1-mini-2025-04-14": 4480523420,
989
+ "openai/gpt-5-2025-08-07": 4449172081,
990
+ "openai/gpt-5-nano-2025-08-07": 4325621059,
991
+ "openai/gpt-5.1-codex-20251113": 2066868126,
992
+ "Others": 13471645954
993
+ }
994
+ },
995
+ {
996
+ "x": "2025-12-13 00:00:00",
997
+ "ys": {
998
+ "openai/gpt-4o-mini": 9888250240,
999
+ "openai/gpt-5.2-20251211": 8250707951,
1000
+ "openai/gpt-5-mini-2025-08-07": 7202929525,
1001
+ "openai/gpt-5-nano-2025-08-07": 4181644847,
1002
+ "openai/gpt-5.1-20251113": 3639002290,
1003
+ "openai/gpt-4.1-2025-04-14": 3442175351,
1004
+ "openai/gpt-4.1-mini-2025-04-14": 3083777464,
1005
+ "openai/gpt-5-2025-08-07": 2823933454,
1006
+ "openai/gpt-4.1-nano-2025-04-14": 1726594046,
1007
+ "Others": 9228210106
1008
+ }
1009
+ },
1010
+ {
1011
+ "x": "2025-12-14 00:00:00",
1012
+ "ys": {
1013
+ "openai/gpt-4o-mini": 10632507565,
1014
+ "openai/gpt-5.2-20251211": 9009711080,
1015
+ "openai/gpt-5-mini-2025-08-07": 8412741832,
1016
+ "openai/gpt-5.1-20251113": 3874438146,
1017
+ "openai/gpt-4.1-mini-2025-04-14": 3442751800,
1018
+ "openai/gpt-5-nano-2025-08-07": 2916957519,
1019
+ "openai/gpt-4.1-2025-04-14": 2700418649,
1020
+ "openai/gpt-5-2025-08-07": 2362939711,
1021
+ "openai/gpt-5.1-codex-20251113": 1911310066,
1022
+ "Others": 8895880757
1023
+ }
1024
+ },
1025
+ {
1026
+ "x": "2025-12-15 00:00:00",
1027
+ "ys": {
1028
+ "openai/gpt-5.2-20251211": 18531143589,
1029
+ "openai/gpt-5-mini-2025-08-07": 14093229777,
1030
+ "openai/gpt-4o-mini": 12664391802,
1031
+ "openai/gpt-5-nano-2025-08-07": 8373695583,
1032
+ "openai/gpt-4.1-2025-04-14": 6729019453,
1033
+ "openai/gpt-4.1-mini-2025-04-14": 4631596490,
1034
+ "openai/gpt-5.1-20251113": 4309499719,
1035
+ "openai/gpt-5-2025-08-07": 3352986325,
1036
+ "openai/gpt-5.1-codex-20251113": 2196624098,
1037
+ "Others": 12643007111
1038
+ }
1039
+ },
1040
+ {
1041
+ "x": "2025-12-16 00:00:00",
1042
+ "ys": {
1043
+ "openai/gpt-5.2-20251211": 20095238181,
1044
+ "openai/gpt-5-mini-2025-08-07": 13829153266,
1045
+ "openai/gpt-4o-mini": 13261598655,
1046
+ "openai/gpt-5-nano-2025-08-07": 9247577248,
1047
+ "openai/gpt-4.1-2025-04-14": 5226272029,
1048
+ "openai/gpt-4.1-mini-2025-04-14": 5194759645,
1049
+ "openai/gpt-5-chat-2025-08-07": 3993962997,
1050
+ "openai/gpt-5.1-20251113": 3903557082,
1051
+ "openai/gpt-5-2025-08-07": 3902091102,
1052
+ "Others": 16124944068
1053
+ }
1054
+ },
1055
+ {
1056
+ "x": "2025-12-17 00:00:00",
1057
+ "ys": {
1058
+ "openai/gpt-5.2-20251211": 44451999153,
1059
+ "openai/gpt-4o-mini": 15641681612,
1060
+ "openai/gpt-5-mini-2025-08-07": 13869425503,
1061
+ "openai/gpt-4.1-2025-04-14": 6153907137,
1062
+ "openai/gpt-4.1-mini-2025-04-14": 5533502263,
1063
+ "openai/gpt-5-nano-2025-08-07": 5357165603,
1064
+ "openai/gpt-5-2025-08-07": 4093875163,
1065
+ "openai/gpt-5.1-20251113": 4029141654,
1066
+ "openai/gpt-5.1-codex-20251113": 2941937977,
1067
+ "Others": 14130735083
1068
+ }
1069
+ },
1070
+ {
1071
+ "x": "2025-12-18 00:00:00",
1072
+ "ys": {
1073
+ "openai/gpt-5.2-20251211": 22285510819,
1074
+ "openai/gpt-4o-mini": 16242285783,
1075
+ "openai/gpt-5-mini-2025-08-07": 15376534554,
1076
+ "openai/gpt-5-2025-08-07": 11727833536,
1077
+ "openai/gpt-5-nano-2025-08-07": 6789658876,
1078
+ "openai/gpt-4.1-2025-04-14": 5116273339,
1079
+ "openai/gpt-4.1-mini-2025-04-14": 4794584181,
1080
+ "openai/gpt-5.1-20251113": 3637062171,
1081
+ "openai/gpt-5.1-codex-20251113": 2518686553,
1082
+ "Others": 12253086523
1083
+ }
1084
+ },
1085
+ {
1086
+ "x": "2025-12-19 00:00:00",
1087
+ "ys": {
1088
+ "openai/gpt-5.2-20251211": 18517176872,
1089
+ "openai/gpt-4o-mini": 14262520217,
1090
+ "openai/gpt-5-mini-2025-08-07": 10530726039,
1091
+ "openai/gpt-4.1-mini-2025-04-14": 4580333465,
1092
+ "openai/gpt-4.1-2025-04-14": 4428211137,
1093
+ "openai/gpt-5.1-codex-20251113": 4039150119,
1094
+ "openai/gpt-5-2025-08-07": 3848258209,
1095
+ "openai/gpt-5.1-20251113": 3561590743,
1096
+ "openai/gpt-5-nano-2025-08-07": 3120434280,
1097
+ "Others": 11224502048
1098
+ }
1099
+ },
1100
+ {
1101
+ "x": "2025-12-20 00:00:00",
1102
+ "ys": {
1103
+ "openai/gpt-4o-mini": 11978242488,
1104
+ "openai/gpt-5.2-20251211": 9214077377,
1105
+ "openai/gpt-5-mini-2025-08-07": 7737479194,
1106
+ "openai/gpt-4.1-mini-2025-04-14": 3441950897,
1107
+ "openai/gpt-5-nano-2025-08-07": 2927297373,
1108
+ "openai/gpt-4.1-2025-04-14": 2276045366,
1109
+ "openai/gpt-5.1-20251113": 2182992090,
1110
+ "openai/text-embedding-3-small": 2043941850,
1111
+ "openai/gpt-5-2025-08-07": 1901041492,
1112
+ "Others": 8438258901
1113
+ }
1114
+ },
1115
+ {
1116
+ "x": "2025-12-21 00:00:00",
1117
+ "ys": {
1118
+ "openai/gpt-4o-mini": 9962953370,
1119
+ "openai/gpt-5-mini-2025-08-07": 8646796030,
1120
+ "openai/gpt-5.2-20251211": 7380988202,
1121
+ "openai/gpt-4.1-mini-2025-04-14": 3883336898,
1122
+ "openai/gpt-4.1-nano-2025-04-14": 2553297192,
1123
+ "openai/gpt-5.1-20251113": 2031258941,
1124
+ "openai/gpt-4.1-2025-04-14": 2001007817,
1125
+ "openai/gpt-5-2025-08-07": 1715273300,
1126
+ "openai/text-embedding-3-small": 1503190250,
1127
+ "Others": 8189799089
1128
+ }
1129
+ },
1130
+ {
1131
+ "x": "2025-12-22 00:00:00",
1132
+ "ys": {
1133
+ "openai/gpt-5-mini-2025-08-07": 13275134365,
1134
+ "openai/gpt-5.2-20251211": 13090858655,
1135
+ "openai/gpt-4o-mini": 12354975603,
1136
+ "openai/gpt-4.1-mini-2025-04-14": 6932941039,
1137
+ "openai/gpt-4.1-2025-04-14": 3579614695,
1138
+ "openai/gpt-5.1-20251113": 3570197580,
1139
+ "openai/gpt-5-2025-08-07": 2794414507,
1140
+ "openai/gpt-5-nano-2025-08-07": 2628777640,
1141
+ "openai/text-embedding-3-small": 1859242205,
1142
+ "Others": 11352407702
1143
+ }
1144
+ },
1145
+ {
1146
+ "x": "2025-12-23 00:00:00",
1147
+ "ys": {
1148
+ "openai/gpt-5-mini-2025-08-07": 13669414705,
1149
+ "openai/gpt-4o-mini": 12602002247,
1150
+ "openai/gpt-5.2-20251211": 11376858656,
1151
+ "openai/gpt-4.1-mini-2025-04-14": 5146436283,
1152
+ "openai/gpt-4.1-2025-04-14": 3728986091,
1153
+ "openai/gpt-5.1-20251113": 3266500491,
1154
+ "openai/gpt-5-2025-08-07": 2524695923,
1155
+ "openai/text-embedding-3-small": 2385457205,
1156
+ "openai/gpt-5-nano-2025-08-07": 2376747066,
1157
+ "Others": 11770476582
1158
+ }
1159
+ },
1160
+ {
1161
+ "x": "2025-12-24 00:00:00",
1162
+ "ys": {
1163
+ "openai/gpt-5.2-20251211": 12363251906,
1164
+ "openai/gpt-5-mini-2025-08-07": 12080446541,
1165
+ "openai/gpt-4o-mini": 11062510774,
1166
+ "openai/gpt-4.1-mini-2025-04-14": 6767105205,
1167
+ "openai/gpt-4.1-2025-04-14": 2999585347,
1168
+ "openai/gpt-5-2025-08-07": 2607567065,
1169
+ "openai/gpt-5.1-20251113": 2398604714,
1170
+ "openai/text-embedding-3-small": 2022254279,
1171
+ "openai/gpt-4.1-nano-2025-04-14": 1451149320,
1172
+ "Others": 9076052733
1173
+ }
1174
+ },
1175
+ {
1176
+ "x": "2025-12-25 00:00:00",
1177
+ "ys": {
1178
+ "openai/gpt-5-mini-2025-08-07": 9992354265,
1179
+ "openai/gpt-4o-mini": 9906664022,
1180
+ "openai/gpt-5.2-20251211": 9420296950,
1181
+ "openai/gpt-4.1-mini-2025-04-14": 3437999586,
1182
+ "openai/gpt-5.1-20251113": 2889307815,
1183
+ "openai/gpt-4.1-2025-04-14": 2855133197,
1184
+ "openai/gpt-5-2025-08-07": 2597990269,
1185
+ "openai/gpt-5-nano-2025-08-07": 1989012540,
1186
+ "openai/gpt-4.1-nano-2025-04-14": 1489176388,
1187
+ "Others": 8233029163
1188
+ }
1189
+ },
1190
+ {
1191
+ "x": "2025-12-26 00:00:00",
1192
+ "ys": {
1193
+ "openai/gpt-5.2-20251211": 15687440476,
1194
+ "openai/gpt-4o-mini": 12244056988,
1195
+ "openai/gpt-5-mini-2025-08-07": 7939168322,
1196
+ "openai/gpt-4.1-mini-2025-04-14": 4158638385,
1197
+ "openai/gpt-4.1-2025-04-14": 3775914951,
1198
+ "openai/gpt-5-nano-2025-08-07": 2265137481,
1199
+ "openai/gpt-5-2025-08-07": 2174880479,
1200
+ "openai/gpt-5.1-20251113": 2077244750,
1201
+ "openai/text-embedding-3-small": 1905109537,
1202
+ "Others": 9194905717
1203
+ }
1204
+ },
1205
+ {
1206
+ "x": "2025-12-27 00:00:00",
1207
+ "ys": {
1208
+ "openai/gpt-4o-mini": 11851821111,
1209
+ "openai/gpt-5.2-20251211": 7243623575,
1210
+ "openai/gpt-5-mini-2025-08-07": 4541993450,
1211
+ "openai/gpt-4.1-mini-2025-04-14": 3325815090,
1212
+ "openai/gpt-5.1-20251113": 2119557301,
1213
+ "openai/gpt-4.1-2025-04-14": 1629295814,
1214
+ "openai/gpt-5-2025-08-07": 1588417445,
1215
+ "openai/text-embedding-3-small": 1452305171,
1216
+ "openai/gpt-5-nano-2025-08-07": 1363413785,
1217
+ "Others": 7287043521
1218
+ }
1219
+ },
1220
+ {
1221
+ "x": "2025-12-28 00:00:00",
1222
+ "ys": {
1223
+ "openai/gpt-4o-mini": 12550477049,
1224
+ "openai/gpt-5.2-20251211": 7817658145,
1225
+ "openai/gpt-5-mini-2025-08-07": 5227396647,
1226
+ "openai/gpt-4.1-mini-2025-04-14": 3550572813,
1227
+ "openai/gpt-5-nano-2025-08-07": 2280422165,
1228
+ "openai/gpt-5.1-20251113": 2101625244,
1229
+ "openai/gpt-5-2025-08-07": 2029638915,
1230
+ "openai/gpt-4.1-2025-04-14": 1466654810,
1231
+ "openai/gpt-4.1-nano-2025-04-14": 1427652532,
1232
+ "Others": 7472657833
1233
+ }
1234
+ },
1235
+ {
1236
+ "x": "2025-12-29 00:00:00",
1237
+ "ys": {
1238
+ "openai/gpt-5.2-20251211": 14478415938,
1239
+ "openai/gpt-4o-mini": 14064311816,
1240
+ "openai/gpt-5-mini-2025-08-07": 7077818406,
1241
+ "openai/gpt-4.1-mini-2025-04-14": 3983796173,
1242
+ "openai/gpt-4.1-2025-04-14": 2776335280,
1243
+ "openai/gpt-5-2025-08-07": 2368300182,
1244
+ "openai/gpt-5-nano-2025-08-07": 2308411711,
1245
+ "openai/gpt-5.1-20251113": 2295348675,
1246
+ "openai/text-embedding-3-small": 1785888529,
1247
+ "Others": 10714051108
1248
+ }
1249
+ },
1250
+ {
1251
+ "x": "2025-12-30 00:00:00",
1252
+ "ys": {
1253
+ "openai/gpt-5.2-20251211": 18671562675,
1254
+ "openai/gpt-4o-mini": 12793668396,
1255
+ "openai/gpt-5-mini-2025-08-07": 5252399688,
1256
+ "openai/gpt-4.1-mini-2025-04-14": 3587089889,
1257
+ "openai/gpt-5.1-codex-20251113": 3448354418,
1258
+ "openai/gpt-4.1-2025-04-14": 3029757367,
1259
+ "openai/gpt-5-nano-2025-08-07": 2729812303,
1260
+ "openai/gpt-5-2025-08-07": 2487823640,
1261
+ "openai/gpt-5.1-20251113": 2004591023,
1262
+ "Others": 10460192837
1263
+ }
1264
+ },
1265
+ {
1266
+ "x": "2025-12-31 00:00:00",
1267
+ "ys": {
1268
+ "openai/gpt-5.2-20251211": 12246445696,
1269
+ "openai/gpt-4o-mini": 11220475525,
1270
+ "openai/gpt-5-mini-2025-08-07": 4462745041,
1271
+ "openai/gpt-5-nano-2025-08-07": 4228446154,
1272
+ "openai/gpt-4.1-mini-2025-04-14": 3655695309,
1273
+ "openai/gpt-4.1-nano-2025-04-14": 2976151083,
1274
+ "openai/gpt-4.1-2025-04-14": 2409177609,
1275
+ "openai/gpt-5-2025-08-07": 2268342341,
1276
+ "openai/gpt-5.1-20251113": 2203624556,
1277
+ "Others": 7832959147
1278
+ }
1279
+ },
1280
+ {
1281
+ "x": "2026-01-01 00:00:00",
1282
+ "ys": {
1283
+ "openai/gpt-4o-mini": 9578717675,
1284
+ "openai/gpt-5.2-20251211": 6742242792,
1285
+ "openai/gpt-4.1-nano-2025-04-14": 4437839298,
1286
+ "openai/gpt-5-mini-2025-08-07": 4195735319,
1287
+ "openai/gpt-5-nano-2025-08-07": 3259098824,
1288
+ "openai/gpt-4.1-mini-2025-04-14": 2154650062,
1289
+ "openai/gpt-4.1-2025-04-14": 1592992484,
1290
+ "openai/gpt-5-2025-08-07": 1355074878,
1291
+ "openai/gpt-5.1-20251113": 1279699764,
1292
+ "Others": 6646190945
1293
+ }
1294
+ },
1295
+ {
1296
+ "x": "2026-01-02 00:00:00",
1297
+ "ys": {
1298
+ "openai/gpt-4o-mini": 14262780029,
1299
+ "openai/gpt-5.2-20251211": 7684028420,
1300
+ "openai/gpt-5-mini-2025-08-07": 4637278999,
1301
+ "openai/gpt-4.1-mini-2025-04-14": 2902671837,
1302
+ "openai/gpt-5-nano-2025-08-07": 2157785961,
1303
+ "openai/gpt-4.1-2025-04-14": 2049659269,
1304
+ "openai/gpt-4.1-nano-2025-04-14": 2035745864,
1305
+ "openai/gpt-5-2025-08-07": 1693581637,
1306
+ "openai/gpt-5.1-20251113": 1629327832,
1307
+ "Others": 8850087080
1308
+ }
1309
+ },
1310
+ {
1311
+ "x": "2026-01-03 00:00:00",
1312
+ "ys": {
1313
+ "openai/gpt-4o-mini": 14681852288,
1314
+ "openai/gpt-5.2-20251211": 6698996516,
1315
+ "openai/gpt-5-mini-2025-08-07": 4721978023,
1316
+ "openai/gpt-4.1-mini-2025-04-14": 2626164615,
1317
+ "openai/gpt-5-nano-2025-08-07": 2568618250,
1318
+ "openai/gpt-4.1-nano-2025-04-14": 2036432300,
1319
+ "openai/gpt-5-2025-08-07": 1932428292,
1320
+ "openai/gpt-4.1-2025-04-14": 1647423264,
1321
+ "openai/gpt-5.1-20251113": 1297066665,
1322
+ "Others": 8294350079
1323
+ }
1324
+ },
1325
+ {
1326
+ "x": "2026-01-04 00:00:00",
1327
+ "ys": {
1328
+ "openai/gpt-4o-mini": 15294595576,
1329
+ "openai/gpt-5.2-20251211": 8529468670,
1330
+ "openai/gpt-5-mini-2025-08-07": 6520875835,
1331
+ "openai/gpt-4.1-mini-2025-04-14": 2781165417,
1332
+ "openai/gpt-5-nano-2025-08-07": 2661403143,
1333
+ "openai/gpt-4.1-2025-04-14": 2131951917,
1334
+ "openai/gpt-4.1-nano-2025-04-14": 1982841313,
1335
+ "openai/text-embedding-3-small": 1796021746,
1336
+ "openai/gpt-5-2025-08-07": 1787203350,
1337
+ "Others": 9309233931
1338
+ }
1339
+ },
1340
+ {
1341
+ "x": "2026-01-05 00:00:00",
1342
+ "ys": {
1343
+ "openai/gpt-4o-mini": 15805489536,
1344
+ "openai/gpt-5.2-20251211": 13628104820,
1345
+ "openai/gpt-5-mini-2025-08-07": 5955843353,
1346
+ "openai/gpt-4.1-mini-2025-04-14": 4060165249,
1347
+ "openai/gpt-4.1-2025-04-14": 3258470344,
1348
+ "openai/gpt-5-2025-08-07": 3151449350,
1349
+ "openai/gpt-5-nano-2025-08-07": 2553745142,
1350
+ "openai/gpt-5.1-20251113": 2414726081,
1351
+ "openai/text-embedding-3-small": 1820317503,
1352
+ "Others": 12241415967
1353
+ }
1354
+ }
1355
+ ],
1356
+ "fetched_at": "2026-01-06T00:09:40.541022",
1357
+ "success": true
1358
+ }
data/providers/together.json ADDED
@@ -0,0 +1,1358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "provider": "together",
3
+ "url": "https://openrouter.ai/provider/together",
4
+ "data": [
5
+ {
6
+ "x": "2025-10-08 00:00:00",
7
+ "ys": {
8
+ "openai/gpt-oss-20b": 3733495053,
9
+ "openai/gpt-oss-120b": 322699009,
10
+ "google/gemma-3n-e4b-it": 301755369,
11
+ "deepseek/deepseek-chat-v3-0324": 168290613,
12
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 132574212,
13
+ "meta-llama/llama-4-scout-17b-16e-instruct": 127458473,
14
+ "qwen/qwen3-235b-a22b-04-28": 92903451,
15
+ "qwen/qwen3-235b-a22b-07-25": 76224816,
16
+ "meta-llama/llama-3.1-70b-instruct": 67300248,
17
+ "Others": 376083001
18
+ }
19
+ },
20
+ {
21
+ "x": "2025-10-09 00:00:00",
22
+ "ys": {
23
+ "openai/gpt-oss-20b": 6080240620,
24
+ "google/gemma-3n-e4b-it": 499525072,
25
+ "openai/gpt-oss-120b": 481187812,
26
+ "qwen/qwen3-235b-a22b-07-25": 137982260,
27
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 130023269,
28
+ "deepseek/deepseek-chat-v3-0324": 127475114,
29
+ "qwen/qwen3-235b-a22b-04-28": 103750716,
30
+ "moonshotai/kimi-k2-0905": 71730136,
31
+ "meta-llama/llama-3.1-70b-instruct": 65409709,
32
+ "Others": 455656222
33
+ }
34
+ },
35
+ {
36
+ "x": "2025-10-10 00:00:00",
37
+ "ys": {
38
+ "openai/gpt-oss-20b": 4078066307,
39
+ "google/gemma-3n-e4b-it": 813144400,
40
+ "openai/gpt-oss-120b": 655488196,
41
+ "qwen/qwen3-235b-a22b-07-25": 287220806,
42
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 205491391,
43
+ "qwen/qwen3-235b-a22b-04-28": 133946560,
44
+ "mistralai/mistral-7b-instruct": 104193153,
45
+ "deepseek/deepseek-chat-v3-0324": 101596393,
46
+ "moonshotai/kimi-k2-0905": 91157676,
47
+ "Others": 429239549
48
+ }
49
+ },
50
+ {
51
+ "x": "2025-10-11 00:00:00",
52
+ "ys": {
53
+ "openai/gpt-oss-20b": 11079818367,
54
+ "google/gemma-3n-e4b-it": 757394338,
55
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 660129955,
56
+ "openai/gpt-oss-120b": 149989380,
57
+ "qwen/qwen3-235b-a22b-04-28": 102406093,
58
+ "deepseek/deepseek-chat-v3-0324": 93867949,
59
+ "mistralai/mistral-7b-instruct": 70483240,
60
+ "meta-llama/llama-3.1-70b-instruct": 62114063,
61
+ "qwen/qwen3-235b-a22b-07-25": 60287309,
62
+ "Others": 368399838
63
+ }
64
+ },
65
+ {
66
+ "x": "2025-10-12 00:00:00",
67
+ "ys": {
68
+ "openai/gpt-oss-20b": 8377244573,
69
+ "google/gemma-3n-e4b-it": 769404343,
70
+ "qwen/qwen3-235b-a22b-04-28": 214210344,
71
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 120349218,
72
+ "openai/gpt-oss-120b": 103383795,
73
+ "deepseek/deepseek-chat-v3-0324": 95778313,
74
+ "meta-llama/llama-3.1-70b-instruct": 65687969,
75
+ "qwen/qwen3-235b-a22b-07-25": 61946890,
76
+ "qwen/qwen3-next-80b-a3b-thinking-2509": 41208345,
77
+ "Others": 326618217
78
+ }
79
+ },
80
+ {
81
+ "x": "2025-10-13 00:00:00",
82
+ "ys": {
83
+ "openai/gpt-oss-20b": 16804881714,
84
+ "google/gemma-3n-e4b-it": 717067340,
85
+ "openai/gpt-oss-120b": 337571011,
86
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 224948483,
87
+ "qwen/qwen3-235b-a22b-04-28": 172606487,
88
+ "qwen/qwen3-235b-a22b-07-25": 111500969,
89
+ "meta-llama/llama-3.1-70b-instruct": 104338129,
90
+ "deepseek/deepseek-chat-v3-0324": 92136868,
91
+ "qwen/qwen-2.5-7b-instruct": 64213092,
92
+ "Others": 488258078
93
+ }
94
+ },
95
+ {
96
+ "x": "2025-10-14 00:00:00",
97
+ "ys": {
98
+ "openai/gpt-oss-20b": 3907259624,
99
+ "google/gemma-3n-e4b-it": 911535324,
100
+ "openai/gpt-oss-120b": 394111602,
101
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 270496374,
102
+ "qwen/qwen3-235b-a22b-07-25": 149497680,
103
+ "qwen/qwen3-235b-a22b-04-28": 115972931,
104
+ "deepseek/deepseek-chat-v3-0324": 93839446,
105
+ "meta-llama/llama-3.1-70b-instruct": 79878197,
106
+ "meta-llama/llama-4-scout-17b-16e-instruct": 71688223,
107
+ "Others": 420653587
108
+ }
109
+ },
110
+ {
111
+ "x": "2025-10-15 00:00:00",
112
+ "ys": {
113
+ "google/gemma-3n-e4b-it": 912956563,
114
+ "moonshotai/kimi-k2-0905": 270902782,
115
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 203602063,
116
+ "openai/gpt-oss-20b": 146310213,
117
+ "qwen/qwen3-235b-a22b-04-28": 140999972,
118
+ "openai/gpt-oss-120b": 129492599,
119
+ "qwen/qwen3-235b-a22b-07-25": 89464776,
120
+ "meta-llama/llama-3.1-70b-instruct": 82239843,
121
+ "deepseek/deepseek-chat-v3-0324": 68055449,
122
+ "Others": 514896398
123
+ }
124
+ },
125
+ {
126
+ "x": "2025-10-16 00:00:00",
127
+ "ys": {
128
+ "google/gemma-3n-e4b-it": 945612927,
129
+ "moonshotai/kimi-k2-0905": 439328714,
130
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 270757744,
131
+ "qwen/qwen3-235b-a22b-04-28": 209942384,
132
+ "openai/gpt-oss-120b": 204215953,
133
+ "qwen/qwen3-235b-a22b-07-25": 175033953,
134
+ "qwen/qwen3-235b-a22b-thinking-2507": 153238351,
135
+ "meta-llama/llama-3.1-70b-instruct": 91629122,
136
+ "deepseek/deepseek-chat-v3-0324": 72727306,
137
+ "Others": 507881362
138
+ }
139
+ },
140
+ {
141
+ "x": "2025-10-17 00:00:00",
142
+ "ys": {
143
+ "google/gemma-3n-e4b-it": 751604828,
144
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 496532565,
145
+ "moonshotai/kimi-k2-0905": 353984661,
146
+ "openai/gpt-oss-120b": 267825054,
147
+ "meta-llama/llama-3.1-70b-instruct": 214835198,
148
+ "qwen/qwen3-235b-a22b-07-25": 190252232,
149
+ "qwen/qwen3-235b-a22b-04-28": 100293265,
150
+ "moonshotai/kimi-k2": 92852547,
151
+ "deepseek/deepseek-chat-v3-0324": 55303171,
152
+ "Others": 407341748
153
+ }
154
+ },
155
+ {
156
+ "x": "2025-10-18 00:00:00",
157
+ "ys": {
158
+ "google/gemma-3n-e4b-it": 1014806695,
159
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 864582104,
160
+ "qwen/qwen3-235b-a22b-07-25": 256086337,
161
+ "openai/gpt-oss-120b": 218386723,
162
+ "qwen/qwen3-235b-a22b-04-28": 113876387,
163
+ "meta-llama/llama-3.1-70b-instruct": 106278655,
164
+ "moonshotai/kimi-k2-0905": 82296627,
165
+ "deepseek/deepseek-chat-v3-0324": 56161297,
166
+ "moonshotai/kimi-k2": 46288668,
167
+ "Others": 354857443
168
+ }
169
+ },
170
+ {
171
+ "x": "2025-10-19 00:00:00",
172
+ "ys": {
173
+ "google/gemma-3n-e4b-it": 1039990100,
174
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 1015665927,
175
+ "openai/gpt-oss-120b": 166581195,
176
+ "qwen/qwen3-235b-a22b-07-25": 117864787,
177
+ "qwen/qwen3-235b-a22b-04-28": 110279491,
178
+ "meta-llama/llama-3.1-70b-instruct": 99131757,
179
+ "mistralai/mistral-7b-instruct": 68760630,
180
+ "deepseek/deepseek-chat-v3-0324": 64201415,
181
+ "moonshotai/kimi-k2": 49340312,
182
+ "Others": 350833005
183
+ }
184
+ },
185
+ {
186
+ "x": "2025-10-20 00:00:00",
187
+ "ys": {
188
+ "google/gemma-3n-e4b-it": 747269397,
189
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 419617341,
190
+ "openai/gpt-oss-120b": 221982967,
191
+ "qwen/qwen3-235b-a22b-07-25": 154707150,
192
+ "qwen/qwen3-235b-a22b-04-28": 94576052,
193
+ "qwen/qwen3-235b-a22b-thinking-2507": 94422182,
194
+ "qwen/qwen3-coder-480b-a35b-07-25": 76240199,
195
+ "meta-llama/llama-3.1-70b-instruct": 64560529,
196
+ "mistralai/mistral-7b-instruct": 62372599,
197
+ "Others": 601873389
198
+ }
199
+ },
200
+ {
201
+ "x": "2025-10-21 00:00:00",
202
+ "ys": {
203
+ "google/gemma-3n-e4b-it": 1048277819,
204
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 344980639,
205
+ "qwen/qwen3-235b-a22b-07-25": 288131385,
206
+ "meta-llama/llama-3.1-70b-instruct": 160100043,
207
+ "openai/gpt-oss-120b": 151555883,
208
+ "qwen/qwen3-235b-a22b-04-28": 113767559,
209
+ "moonshotai/kimi-k2-0905": 69728639,
210
+ "deepseek/deepseek-chat-v3-0324": 67019347,
211
+ "moonshotai/kimi-k2": 57706762,
212
+ "Others": 464656633
213
+ }
214
+ },
215
+ {
216
+ "x": "2025-10-22 00:00:00",
217
+ "ys": {
218
+ "google/gemma-3n-e4b-it": 1522279414,
219
+ "qwen/qwen3-coder-480b-a35b-07-25": 850288316,
220
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 351732002,
221
+ "qwen/qwen3-235b-a22b-07-25": 247554408,
222
+ "moonshotai/kimi-k2-0905": 123421073,
223
+ "qwen/qwen3-235b-a22b-04-28": 105724193,
224
+ "meta-llama/llama-3.1-70b-instruct": 105401534,
225
+ "deepseek/deepseek-chat-v3-0324": 78689768,
226
+ "openai/gpt-oss-120b": 64257885,
227
+ "Others": 431655312
228
+ }
229
+ },
230
+ {
231
+ "x": "2025-10-23 00:00:00",
232
+ "ys": {
233
+ "qwen/qwen3-coder-480b-a35b-07-25": 1732661501,
234
+ "google/gemma-3n-e4b-it": 1075050448,
235
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 357729821,
236
+ "moonshotai/kimi-k2-0905": 133068190,
237
+ "qwen/qwen3-235b-a22b-07-25": 124645935,
238
+ "qwen/qwen3-235b-a22b-04-28": 113177155,
239
+ "meta-llama/llama-3.1-70b-instruct": 113133329,
240
+ "deepseek/deepseek-chat-v3-0324": 62707687,
241
+ "openai/gpt-oss-120b": 33744043,
242
+ "Others": 363436538
243
+ }
244
+ },
245
+ {
246
+ "x": "2025-10-24 00:00:00",
247
+ "ys": {
248
+ "qwen/qwen3-235b-a22b-07-25": 685559206,
249
+ "google/gemma-3n-e4b-it": 651594092,
250
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 263088768,
251
+ "meta-llama/llama-3.1-70b-instruct": 118131601,
252
+ "qwen/qwen3-235b-a22b-04-28": 106908653,
253
+ "qwen/qwen-2.5-7b-instruct": 106387118,
254
+ "openai/gpt-oss-20b": 101491618,
255
+ "deepseek/deepseek-chat-v3-0324": 77031272,
256
+ "moonshotai/kimi-k2-0905": 70800307,
257
+ "Others": 421928236
258
+ }
259
+ },
260
+ {
261
+ "x": "2025-10-25 00:00:00",
262
+ "ys": {
263
+ "qwen/qwen3-235b-a22b-07-25": 1751312719,
264
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 1310351424,
265
+ "google/gemma-3n-e4b-it": 870962946,
266
+ "meta-llama/llama-3.1-70b-instruct": 192974990,
267
+ "openai/gpt-oss-20b": 108929423,
268
+ "qwen/qwen3-235b-a22b-04-28": 100691085,
269
+ "qwen/qwen3-coder-480b-a35b-07-25": 85067561,
270
+ "qwen/qwen3-235b-a22b-thinking-2507": 69305107,
271
+ "deepseek/deepseek-chat-v3-0324": 52765189,
272
+ "Others": 327372673
273
+ }
274
+ },
275
+ {
276
+ "x": "2025-10-26 00:00:00",
277
+ "ys": {
278
+ "qwen/qwen3-235b-a22b-07-25": 3658052227,
279
+ "google/gemma-3n-e4b-it": 719224442,
280
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 281270604,
281
+ "openai/gpt-oss-20b": 211801605,
282
+ "qwen/qwen3-235b-a22b-04-28": 126583648,
283
+ "meta-llama/llama-3.1-70b-instruct": 101713729,
284
+ "meta-llama/llama-4-scout-17b-16e-instruct": 55563039,
285
+ "deepseek/deepseek-chat-v3-0324": 48915263,
286
+ "moonshotai/kimi-k2": 43758409,
287
+ "Others": 308953599
288
+ }
289
+ },
290
+ {
291
+ "x": "2025-10-27 00:00:00",
292
+ "ys": {
293
+ "qwen/qwen3-235b-a22b-07-25": 2992685307,
294
+ "google/gemma-3n-e4b-it": 702070704,
295
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 579055815,
296
+ "meta-llama/llama-3.1-70b-instruct": 235416443,
297
+ "deepseek/deepseek-chat-v3-0324": 205837107,
298
+ "qwen/qwen3-235b-a22b-04-28": 122521698,
299
+ "qwen/qwen3-coder-480b-a35b-07-25": 80630453,
300
+ "mistralai/mixtral-8x7b-instruct": 44552381,
301
+ "meta-llama/llama-4-scout-17b-16e-instruct": 44416757,
302
+ "Others": 399590131
303
+ }
304
+ },
305
+ {
306
+ "x": "2025-10-28 00:00:00",
307
+ "ys": {
308
+ "qwen/qwen3-235b-a22b-07-25": 1354018699,
309
+ "google/gemma-3n-e4b-it": 464885925,
310
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 399440413,
311
+ "deepseek/deepseek-chat-v3-0324": 258495191,
312
+ "qwen/qwen3-235b-a22b-04-28": 114705603,
313
+ "meta-llama/llama-3.1-70b-instruct": 112668258,
314
+ "nvidia/nemotron-nano-9b-v2": 57264435,
315
+ "qwen/qwen-2.5-7b-instruct": 51342540,
316
+ "qwen/qwen3-coder-480b-a35b-07-25": 43537930,
317
+ "Others": 400443539
318
+ }
319
+ },
320
+ {
321
+ "x": "2025-10-29 00:00:00",
322
+ "ys": {
323
+ "qwen/qwen3-235b-a22b-07-25": 1004742537,
324
+ "qwen/qwen3-coder-480b-a35b-07-25": 474008012,
325
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 462886715,
326
+ "google/gemma-3n-e4b-it": 288314083,
327
+ "meta-llama/llama-3.1-70b-instruct": 182036104,
328
+ "qwen/qwen3-235b-a22b-thinking-2507": 129282594,
329
+ "qwen/qwen3-235b-a22b-04-28": 118681745,
330
+ "deepseek/deepseek-chat-v3-0324": 71733263,
331
+ "qwen/qwen-2.5-7b-instruct": 68210705,
332
+ "Others": 485283409
333
+ }
334
+ },
335
+ {
336
+ "x": "2025-10-30 00:00:00",
337
+ "ys": {
338
+ "google/gemma-3n-e4b-it": 480450558,
339
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 285181421,
340
+ "qwen/qwen3-235b-a22b-07-25": 250466862,
341
+ "qwen/qwen3-coder-480b-a35b-07-25": 127690051,
342
+ "qwen/qwen3-235b-a22b-04-28": 103373068,
343
+ "nvidia/nemotron-nano-9b-v2": 96022943,
344
+ "qwen/qwen-2.5-7b-instruct": 82948061,
345
+ "deepseek/deepseek-chat-v3-0324": 73875569,
346
+ "qwen/qwen3-235b-a22b-thinking-2507": 47741299,
347
+ "Others": 420781474
348
+ }
349
+ },
350
+ {
351
+ "x": "2025-10-31 00:00:00",
352
+ "ys": {
353
+ "qwen/qwen3-235b-a22b-07-25": 1818594705,
354
+ "google/gemma-3n-e4b-it": 651028279,
355
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 285749208,
356
+ "qwen/qwen3-235b-a22b-04-28": 193534470,
357
+ "deepseek/deepseek-chat-v3-0324": 173117638,
358
+ "moonshotai/kimi-k2-0905": 61159345,
359
+ "qwen/qwen-2.5-7b-instruct": 47261834,
360
+ "qwen/qwen3-235b-a22b-thinking-2507": 40283110,
361
+ "deepseek/deepseek-r1-distill-llama-70b:free": 37726843,
362
+ "Others": 358275995
363
+ }
364
+ },
365
+ {
366
+ "x": "2025-11-01 00:00:00",
367
+ "ys": {
368
+ "qwen/qwen3-235b-a22b-07-25": 2314923176,
369
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 745865897,
370
+ "google/gemma-3n-e4b-it": 583925088,
371
+ "deepseek/deepseek-chat-v3-0324": 413697459,
372
+ "qwen/qwen3-235b-a22b-04-28": 109021450,
373
+ "mistralai/mistral-7b-instruct": 80587862,
374
+ "deepcogito/cogito-v2-preview-deepseek-671b": 63481445,
375
+ "meta-llama/llama-4-scout-17b-16e-instruct": 33736906,
376
+ "deepseek/deepseek-r1-distill-llama-70b:free": 33602000,
377
+ "Others": 326909567
378
+ }
379
+ },
380
+ {
381
+ "x": "2025-11-02 00:00:00",
382
+ "ys": {
383
+ "qwen/qwen3-235b-a22b-07-25": 2569456924,
384
+ "deepseek/deepseek-chat-v3-0324": 793935838,
385
+ "google/gemma-3n-e4b-it": 620431553,
386
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 535023171,
387
+ "qwen/qwen3-235b-a22b-04-28": 104725088,
388
+ "mistralai/mistral-7b-instruct": 91063119,
389
+ "moonshotai/kimi-k2-0905": 84013083,
390
+ "qwen/qwen-2.5-7b-instruct": 41163403,
391
+ "deepcogito/cogito-v2-preview-deepseek-671b": 34091083,
392
+ "Others": 290596396
393
+ }
394
+ },
395
+ {
396
+ "x": "2025-11-03 00:00:00",
397
+ "ys": {
398
+ "qwen/qwen3-235b-a22b-07-25": 2249784679,
399
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 259372165,
400
+ "google/gemma-3n-e4b-it": 244263558,
401
+ "openai/gpt-oss-120b": 104252611,
402
+ "mistralai/mistral-7b-instruct": 98795842,
403
+ "qwen/qwen3-235b-a22b-04-28": 98191741,
404
+ "deepseek/deepseek-chat-v3-0324": 95386367,
405
+ "qwen/qwen3-coder-480b-a35b-07-25": 61342520,
406
+ "mistralai/mixtral-8x7b-instruct": 56331805,
407
+ "Others": 458053868
408
+ }
409
+ },
410
+ {
411
+ "x": "2025-11-04 00:00:00",
412
+ "ys": {
413
+ "qwen/qwen3-235b-a22b-07-25": 2091206152,
414
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 358285776,
415
+ "google/gemma-3n-e4b-it": 309204590,
416
+ "qwen/qwen3-coder-480b-a35b-07-25": 106848915,
417
+ "qwen/qwen3-235b-a22b-04-28": 101631750,
418
+ "nvidia/nemotron-nano-9b-v2": 72290555,
419
+ "arcee-ai/afm-4.5b": 71117050,
420
+ "deepseek/deepseek-chat-v3-0324": 61906393,
421
+ "deepcogito/cogito-v2-preview-deepseek-671b": 59231968,
422
+ "Others": 534811206
423
+ }
424
+ },
425
+ {
426
+ "x": "2025-11-05 00:00:00",
427
+ "ys": {
428
+ "qwen/qwen3-235b-a22b-07-25": 1947981843,
429
+ "google/gemma-3n-e4b-it": 473738068,
430
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 400871591,
431
+ "moonshotai/kimi-k2-0905": 283653891,
432
+ "nvidia/nemotron-nano-9b-v2": 163206245,
433
+ "qwen/qwen3-coder-480b-a35b-07-25": 147468726,
434
+ "qwen/qwen3-235b-a22b-04-28": 102721875,
435
+ "moonshotai/kimi-k2": 65219525,
436
+ "deepseek/deepseek-chat-v3-0324": 63724379,
437
+ "Others": 486405755
438
+ }
439
+ },
440
+ {
441
+ "x": "2025-11-06 00:00:00",
442
+ "ys": {
443
+ "qwen/qwen3-235b-a22b-07-25": 1977312611,
444
+ "nvidia/nemotron-nano-9b-v2": 555593215,
445
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 387252879,
446
+ "qwen/qwen-2.5-7b-instruct": 245983435,
447
+ "moonshotai/kimi-k2-0905": 229997801,
448
+ "google/gemma-3n-e4b-it": 229322149,
449
+ "qwen/qwen3-235b-a22b-04-28": 108303428,
450
+ "qwen/qwen3-coder-480b-a35b-07-25": 107191711,
451
+ "qwen/qwen3-235b-a22b-thinking-2507": 101770856,
452
+ "Others": 596209140
453
+ }
454
+ },
455
+ {
456
+ "x": "2025-11-07 00:00:00",
457
+ "ys": {
458
+ "qwen/qwen3-235b-a22b-07-25": 2250203652,
459
+ "nvidia/nemotron-nano-9b-v2": 542506124,
460
+ "qwen/qwen-2.5-7b-instruct": 459234590,
461
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 391833589,
462
+ "google/gemma-3n-e4b-it": 289051821,
463
+ "qwen/qwen3-235b-a22b-04-28": 130318660,
464
+ "qwen/qwen3-coder-480b-a35b-07-25": 112725489,
465
+ "deepseek/deepseek-chat-v3-0324": 72369405,
466
+ "moonshotai/kimi-k2-0905": 55783006,
467
+ "Others": 540255047
468
+ }
469
+ },
470
+ {
471
+ "x": "2025-11-08 00:00:00",
472
+ "ys": {
473
+ "qwen/qwen3-235b-a22b-07-25": 2433050136,
474
+ "qwen/qwen-2.5-7b-instruct": 887398504,
475
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 850987015,
476
+ "nvidia/nemotron-nano-9b-v2": 512059462,
477
+ "qwen/qwen3-235b-a22b-04-28": 163287160,
478
+ "google/gemma-3n-e4b-it": 151269914,
479
+ "qwen/qwen3-coder-480b-a35b-07-25": 88899117,
480
+ "deepseek/deepseek-chat-v3-0324": 67545405,
481
+ "meta-llama/llama-4-scout-17b-16e-instruct": 59510814,
482
+ "Others": 389627097
483
+ }
484
+ },
485
+ {
486
+ "x": "2025-11-09 00:00:00",
487
+ "ys": {
488
+ "qwen/qwen3-235b-a22b-07-25": 2476775954,
489
+ "nvidia/nemotron-nano-9b-v2": 530268177,
490
+ "qwen/qwen-2.5-7b-instruct": 435672193,
491
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 298514082,
492
+ "google/gemma-3n-e4b-it": 138759889,
493
+ "qwen/qwen3-235b-a22b-04-28": 112433518,
494
+ "meta-llama/llama-4-scout-17b-16e-instruct": 76793964,
495
+ "moonshotai/kimi-k2-0905": 69180479,
496
+ "deepseek/deepseek-chat-v3-0324": 65738307,
497
+ "Others": 385932129
498
+ }
499
+ },
500
+ {
501
+ "x": "2025-11-10 00:00:00",
502
+ "ys": {
503
+ "qwen/qwen3-235b-a22b-07-25": 2168776316,
504
+ "nvidia/nemotron-nano-9b-v2": 500726122,
505
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 428212676,
506
+ "google/gemma-3n-e4b-it": 352741778,
507
+ "qwen/qwen3-235b-a22b-04-28": 107925340,
508
+ "meta-llama/llama-4-scout-17b-16e-instruct": 84558947,
509
+ "deepseek/deepseek-chat-v3-0324": 66483648,
510
+ "mistralai/mistral-7b-instruct-v0.3": 51711004,
511
+ "mistralai/mixtral-8x7b-instruct": 42794021,
512
+ "Others": 420718131
513
+ }
514
+ },
515
+ {
516
+ "x": "2025-11-11 00:00:00",
517
+ "ys": {
518
+ "qwen/qwen3-235b-a22b-07-25": 2103234451,
519
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 556579197,
520
+ "nvidia/nemotron-nano-9b-v2": 508386730,
521
+ "mistralai/mistral-7b-instruct-v0.1": 242710079,
522
+ "google/gemma-3n-e4b-it": 197872840,
523
+ "qwen/qwen3-235b-a22b-thinking-2507": 120900177,
524
+ "qwen/qwen3-235b-a22b-04-28": 98904302,
525
+ "deepseek/deepseek-chat-v3-0324": 65452153,
526
+ "mistralai/mixtral-8x7b-instruct": 60674680,
527
+ "Others": 548290237
528
+ }
529
+ },
530
+ {
531
+ "x": "2025-11-12 00:00:00",
532
+ "ys": {
533
+ "qwen/qwen3-235b-a22b-07-25": 2178532181,
534
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 781793420,
535
+ "nvidia/nemotron-nano-9b-v2": 589708162,
536
+ "deepseek/deepseek-r1-distill-qwen-14b": 237872845,
537
+ "moonshotai/kimi-k2-thinking-20251106": 185757965,
538
+ "qwen/qwen3-235b-a22b-thinking-2507": 174825820,
539
+ "google/gemma-3n-e4b-it": 161176812,
540
+ "qwen/qwen3-coder-480b-a35b-07-25": 139769784,
541
+ "mistralai/mixtral-8x7b-instruct": 102119547,
542
+ "Others": 979324077
543
+ }
544
+ },
545
+ {
546
+ "x": "2025-11-13 00:00:00",
547
+ "ys": {
548
+ "qwen/qwen3-235b-a22b-07-25": 2524459105,
549
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 1137849935,
550
+ "nvidia/nemotron-nano-9b-v2": 532805451,
551
+ "qwen/qwen3-235b-a22b-thinking-2507": 412923338,
552
+ "qwen/qwen-2.5-7b-instruct": 207899971,
553
+ "google/gemma-3n-e4b-it": 171876597,
554
+ "moonshotai/kimi-k2-thinking-20251106": 143482996,
555
+ "qwen/qwen3-235b-a22b-04-28": 135958226,
556
+ "deepseek/deepseek-r1-distill-qwen-14b": 103842872,
557
+ "Others": 939557712
558
+ }
559
+ },
560
+ {
561
+ "x": "2025-11-14 00:00:00",
562
+ "ys": {
563
+ "qwen/qwen3-235b-a22b-07-25": 2120253883,
564
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 802702290,
565
+ "nvidia/nemotron-nano-9b-v2": 549918405,
566
+ "meta-llama/llama-3.1-405b-instruct": 183627299,
567
+ "google/gemma-3n-e4b-it": 154554701,
568
+ "meta-llama/llama-3.1-70b-instruct": 112859595,
569
+ "moonshotai/kimi-k2-thinking-20251106": 111310119,
570
+ "z-ai/glm-4.6": 98418163,
571
+ "qwen/qwen3-235b-a22b-04-28": 97495696,
572
+ "Others": 872101855
573
+ }
574
+ },
575
+ {
576
+ "x": "2025-11-15 00:00:00",
577
+ "ys": {
578
+ "qwen/qwen3-235b-a22b-07-25": 1604305404,
579
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 868896161,
580
+ "z-ai/glm-4.6": 775492146,
581
+ "mistralai/mistral-7b-instruct-v0.3": 575160069,
582
+ "nvidia/nemotron-nano-9b-v2": 540620348,
583
+ "google/gemma-3n-e4b-it": 244300635,
584
+ "qwen/qwen3-235b-a22b-04-28": 120433529,
585
+ "meta-llama/llama-3.1-70b-instruct": 61922220,
586
+ "deepseek/deepseek-chat-v3-0324": 60801557,
587
+ "Others": 523565907
588
+ }
589
+ },
590
+ {
591
+ "x": "2025-11-16 00:00:00",
592
+ "ys": {
593
+ "qwen/qwen3-235b-a22b-07-25": 1858775563,
594
+ "nvidia/nemotron-nano-9b-v2": 491204579,
595
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 338911545,
596
+ "mistralai/mistral-7b-instruct-v0.3": 234605279,
597
+ "google/gemma-3n-e4b-it": 200961543,
598
+ "qwen/qwen3-235b-a22b-04-28": 143971828,
599
+ "qwen/qwen-2.5-72b-instruct": 85943735,
600
+ "moonshotai/kimi-k2-thinking-20251106": 77883180,
601
+ "deepseek/deepseek-chat-v3-0324": 69494541,
602
+ "Others": 610591526
603
+ }
604
+ },
605
+ {
606
+ "x": "2025-11-17 00:00:00",
607
+ "ys": {
608
+ "qwen/qwen3-235b-a22b-07-25": 1655510202,
609
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 514044931,
610
+ "nvidia/nemotron-nano-9b-v2": 512148476,
611
+ "google/gemma-3n-e4b-it": 281977417,
612
+ "z-ai/glm-4.6": 234723981,
613
+ "mistralai/mistral-7b-instruct-v0.3": 197322042,
614
+ "qwen/qwen3-235b-a22b-thinking-2507": 143230325,
615
+ "moonshotai/kimi-k2-thinking-20251106": 110427697,
616
+ "qwen/qwen-2.5-7b-instruct": 105527165,
617
+ "Others": 765503734
618
+ }
619
+ },
620
+ {
621
+ "x": "2025-11-18 00:00:00",
622
+ "ys": {
623
+ "qwen/qwen3-235b-a22b-07-25": 1590520097,
624
+ "nvidia/nemotron-nano-9b-v2": 510690859,
625
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 347764931,
626
+ "z-ai/glm-4.6": 247295616,
627
+ "google/gemma-3n-e4b-it": 163808044,
628
+ "qwen/qwen3-235b-a22b-04-28": 107491598,
629
+ "qwen/qwen-2.5-7b-instruct": 90106135,
630
+ "meta-llama/llama-3.1-70b-instruct": 88996708,
631
+ "deepseek/deepseek-chat-v3-0324": 72098708,
632
+ "Others": 783018399
633
+ }
634
+ },
635
+ {
636
+ "x": "2025-11-19 00:00:00",
637
+ "ys": {
638
+ "nvidia/nemotron-nano-9b-v2": 534944023,
639
+ "qwen/qwen3-235b-a22b-07-25": 417279492,
640
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 322593317,
641
+ "qwen/qwen3-coder-480b-a35b-07-25": 236412584,
642
+ "google/gemma-3n-e4b-it": 141776444,
643
+ "moonshotai/kimi-k2-0905": 133439114,
644
+ "qwen/qwen3-235b-a22b-04-28": 100569079,
645
+ "deepseek/deepseek-chat-v3-0324": 76820212,
646
+ "mistralai/mixtral-8x7b-instruct": 76195570,
647
+ "Others": 707055896
648
+ }
649
+ },
650
+ {
651
+ "x": "2025-11-20 00:00:00",
652
+ "ys": {
653
+ "nvidia/nemotron-nano-9b-v2": 536885008,
654
+ "qwen/qwen-2.5-7b-instruct": 371734735,
655
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 234583904,
656
+ "qwen/qwen3-235b-a22b-04-28": 213756035,
657
+ "qwen/qwen3-235b-a22b-07-25": 125128617,
658
+ "google/gemma-3n-e4b-it": 102627021,
659
+ "moonshotai/kimi-k2": 93564902,
660
+ "meta-llama/llama-4-scout-17b-16e-instruct": 85674891,
661
+ "mistralai/mistral-7b-instruct-v0.3": 83986312,
662
+ "Others": 753918175
663
+ }
664
+ },
665
+ {
666
+ "x": "2025-11-21 00:00:00",
667
+ "ys": {
668
+ "nvidia/nemotron-nano-9b-v2": 554788020,
669
+ "qwen/qwen3-235b-a22b-04-28": 444068911,
670
+ "qwen/qwen-2.5-7b-instruct": 395779924,
671
+ "qwen/qwen3-235b-a22b-07-25": 256329699,
672
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 169722561,
673
+ "mistralai/mistral-7b-instruct-v0.3": 118117848,
674
+ "deepseek/deepseek-chat-v3-0324": 77115261,
675
+ "z-ai/glm-4.6": 64846597,
676
+ "moonshotai/kimi-k2-0905": 64090639,
677
+ "Others": 737544466
678
+ }
679
+ },
680
+ {
681
+ "x": "2025-11-22 00:00:00",
682
+ "ys": {
683
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 1128251302,
684
+ "openai/gpt-oss-120b": 695106985,
685
+ "nvidia/nemotron-nano-9b-v2": 527346743,
686
+ "qwen/qwen-2.5-7b-instruct": 234521290,
687
+ "qwen/qwen3-235b-a22b-07-25": 159500518,
688
+ "google/gemma-3n-e4b-it": 124285350,
689
+ "qwen/qwen3-235b-a22b-04-28": 121245937,
690
+ "deepseek/deepseek-chat-v3-0324": 82926336,
691
+ "meta-llama/llama-3.1-70b-instruct": 71779926,
692
+ "Others": 578386759
693
+ }
694
+ },
695
+ {
696
+ "x": "2025-11-23 00:00:00",
697
+ "ys": {
698
+ "nvidia/nemotron-nano-9b-v2": 500418253,
699
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 194763534,
700
+ "meta-llama/llama-3-70b-instruct": 190001863,
701
+ "meta-llama/llama-3.1-70b-instruct": 180621946,
702
+ "qwen/qwen3-235b-a22b-04-28": 179354025,
703
+ "google/gemma-3n-e4b-it": 119795660,
704
+ "deepseek/deepseek-chat-v3-0324": 99874011,
705
+ "qwen/qwen3-235b-a22b-thinking-2507": 98053804,
706
+ "qwen/qwen-2.5-7b-instruct": 58756398,
707
+ "Others": 541403556
708
+ }
709
+ },
710
+ {
711
+ "x": "2025-11-24 00:00:00",
712
+ "ys": {
713
+ "nvidia/nemotron-nano-9b-v2": 494465667,
714
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 468196818,
715
+ "google/gemma-3n-e4b-it": 379119489,
716
+ "qwen/qwen3-235b-a22b-04-28": 146544959,
717
+ "qwen/qwen3-235b-a22b-thinking-2507": 105073042,
718
+ "deepseek/deepseek-chat-v3-0324": 103071019,
719
+ "mistralai/mixtral-8x7b-instruct": 64877136,
720
+ "qwen/qwen-2.5-7b-instruct": 64435316,
721
+ "meta-llama/llama-3.3-70b-instruct": 62822127,
722
+ "Others": 590255121
723
+ }
724
+ },
725
+ {
726
+ "x": "2025-11-25 00:00:00",
727
+ "ys": {
728
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 790155254,
729
+ "google/gemma-3n-e4b-it": 584323946,
730
+ "nvidia/nemotron-nano-9b-v2": 538194230,
731
+ "openai/gpt-oss-120b": 268724491,
732
+ "mistralai/mistral-7b-instruct-v0.3": 181546909,
733
+ "qwen/qwen3-235b-a22b-04-28": 143063842,
734
+ "qwen/qwen3-235b-a22b-07-25": 115959395,
735
+ "mistralai/mixtral-8x7b-instruct": 108244253,
736
+ "deepseek/deepseek-chat-v3-0324": 91458557,
737
+ "Others": 671227473
738
+ }
739
+ },
740
+ {
741
+ "x": "2025-11-26 00:00:00",
742
+ "ys": {
743
+ "nvidia/nemotron-nano-9b-v2": 543206556,
744
+ "google/gemma-3n-e4b-it": 451443658,
745
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 308825895,
746
+ "qwen/qwen-2.5-7b-instruct": 264911249,
747
+ "qwen/qwen3-235b-a22b-04-28": 188115387,
748
+ "meta-llama/llama-4-scout-17b-16e-instruct": 119236095,
749
+ "deepseek/deepseek-chat-v3-0324": 84170896,
750
+ "qwen/qwen3-235b-a22b-thinking-2507": 64678494,
751
+ "mistralai/mistral-7b-instruct-v0.3": 63879310,
752
+ "Others": 550824170
753
+ }
754
+ },
755
+ {
756
+ "x": "2025-11-27 00:00:00",
757
+ "ys": {
758
+ "google/gemma-3n-e4b-it": 726363522,
759
+ "nvidia/nemotron-nano-9b-v2": 538309722,
760
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 528723596,
761
+ "meta-llama/llama-4-scout-17b-16e-instruct": 404359351,
762
+ "qwen/qwen3-235b-a22b-07-25": 196725864,
763
+ "qwen/qwen-2.5-7b-instruct": 112857103,
764
+ "qwen/qwen-2.5-72b-instruct": 109951874,
765
+ "qwen/qwen3-235b-a22b-04-28": 106998055,
766
+ "z-ai/glm-4.6": 76726959,
767
+ "Others": 597813684
768
+ }
769
+ },
770
+ {
771
+ "x": "2025-11-28 00:00:00",
772
+ "ys": {
773
+ "nvidia/nemotron-nano-9b-v2": 584439370,
774
+ "google/gemma-3n-e4b-it": 510720124,
775
+ "z-ai/glm-4.6": 477649679,
776
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 454134977,
777
+ "qwen/qwen3-235b-a22b-07-25": 419451445,
778
+ "qwen/qwen3-235b-a22b-04-28": 168012120,
779
+ "deepseek/deepseek-r1-0528": 139780614,
780
+ "qwen/qwen-2.5-72b-instruct": 89196238,
781
+ "deepseek/deepseek-chat-v3-0324": 80049929,
782
+ "Others": 710221264
783
+ }
784
+ },
785
+ {
786
+ "x": "2025-11-29 00:00:00",
787
+ "ys": {
788
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 1643692261,
789
+ "google/gemma-3n-e4b-it": 621362734,
790
+ "nvidia/nemotron-nano-9b-v2": 552404113,
791
+ "z-ai/glm-4.6": 278800697,
792
+ "qwen/qwen3-235b-a22b-04-28": 145915008,
793
+ "deepseek/deepseek-chat-v3-0324": 103407948,
794
+ "qwen/qwen-2.5-7b-instruct": 82270879,
795
+ "qwen/qwen3-235b-a22b-thinking-2507": 63887536,
796
+ "qwen/qwen3-235b-a22b-07-25": 47470616,
797
+ "Others": 355328393
798
+ }
799
+ },
800
+ {
801
+ "x": "2025-11-30 00:00:00",
802
+ "ys": {
803
+ "qwen/qwen3-235b-a22b-07-25": 581835417,
804
+ "nvidia/nemotron-nano-9b-v2": 436749652,
805
+ "google/gemma-3n-e4b-it": 395592824,
806
+ "z-ai/glm-4.6": 236482061,
807
+ "qwen/qwen3-235b-a22b-04-28": 128852856,
808
+ "deepseek/deepseek-chat-v3-0324": 116601804,
809
+ "qwen/qwen-2.5-7b-instruct": 115489514,
810
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 104270694,
811
+ "meta-llama/llama-4-scout-17b-16e-instruct": 49586470,
812
+ "Others": 395142935
813
+ }
814
+ },
815
+ {
816
+ "x": "2025-12-01 00:00:00",
817
+ "ys": {
818
+ "google/gemma-3n-e4b-it": 531636122,
819
+ "nvidia/nemotron-nano-9b-v2": 496988572,
820
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 289352899,
821
+ "z-ai/glm-4.6": 149598157,
822
+ "deepseek/deepseek-chat-v3-0324": 105399064,
823
+ "qwen/qwen3-235b-a22b-04-28": 100109701,
824
+ "meta-llama/llama-4-scout-17b-16e-instruct": 91910432,
825
+ "qwen/qwen-2.5-7b-instruct": 72924414,
826
+ "qwen/qwen3-235b-a22b-07-25": 72292532,
827
+ "Others": 530720905
828
+ }
829
+ },
830
+ {
831
+ "x": "2025-12-02 00:00:00",
832
+ "ys": {
833
+ "nvidia/nemotron-nano-9b-v2": 607676432,
834
+ "google/gemma-3n-e4b-it": 578271541,
835
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 397100159,
836
+ "openai/gpt-oss-120b": 135004917,
837
+ "qwen/qwen3-235b-a22b-07-25": 134603946,
838
+ "mistralai/mixtral-8x7b-instruct": 115343638,
839
+ "meta-llama/llama-3.1-70b-instruct": 115036777,
840
+ "qwen/qwen3-235b-a22b-04-28": 110413103,
841
+ "deepseek/deepseek-chat-v3-0324": 92743563,
842
+ "Others": 627061954
843
+ }
844
+ },
845
+ {
846
+ "x": "2025-12-03 00:00:00",
847
+ "ys": {
848
+ "nvidia/nemotron-nano-9b-v2": 633917642,
849
+ "qwen/qwen-2.5-7b-instruct": 483152380,
850
+ "z-ai/glm-4.6": 229109803,
851
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 217479118,
852
+ "qwen/qwen3-235b-a22b-07-25": 210419084,
853
+ "google/gemma-3n-e4b-it": 134700141,
854
+ "qwen/qwen3-235b-a22b-04-28": 121896039,
855
+ "deepseek/deepseek-chat-v3-0324": 114233125,
856
+ "openai/gpt-oss-120b": 91027499,
857
+ "Others": 703606971
858
+ }
859
+ },
860
+ {
861
+ "x": "2025-12-04 00:00:00",
862
+ "ys": {
863
+ "openai/gpt-oss-120b": 789819312,
864
+ "nvidia/nemotron-nano-9b-v2": 609565888,
865
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 394027231,
866
+ "z-ai/glm-4.6": 211627439,
867
+ "qwen/qwen3-235b-a22b-07-25": 143576276,
868
+ "qwen/qwen3-next-80b-a3b-thinking-2509": 134352598,
869
+ "google/gemma-3n-e4b-it": 131975588,
870
+ "qwen/qwen3-235b-a22b-04-28": 116658872,
871
+ "meta-llama/llama-4-scout-17b-16e-instruct": 115334858,
872
+ "Others": 650492306
873
+ }
874
+ },
875
+ {
876
+ "x": "2025-12-05 00:00:00",
877
+ "ys": {
878
+ "openai/gpt-oss-120b": 1133884788,
879
+ "nvidia/nemotron-nano-9b-v2": 620876266,
880
+ "qwen/qwen3-235b-a22b-07-25": 177466173,
881
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 170697847,
882
+ "qwen/qwen3-235b-a22b-04-28": 101838468,
883
+ "qwen/qwen3-235b-a22b-thinking-2507": 92277726,
884
+ "google/gemma-3n-e4b-it": 76936029,
885
+ "deepseek/deepseek-chat-v3-0324": 73133671,
886
+ "meta-llama/llama-3.1-70b-instruct": 69118625,
887
+ "Others": 510998895
888
+ }
889
+ },
890
+ {
891
+ "x": "2025-12-06 00:00:00",
892
+ "ys": {
893
+ "openai/gpt-oss-120b": 1060276018,
894
+ "nvidia/nemotron-nano-9b-v2": 618079948,
895
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 187786328,
896
+ "qwen/qwen-2.5-7b-instruct": 117985080,
897
+ "google/gemma-3n-e4b-it": 116750766,
898
+ "qwen/qwen3-235b-a22b-07-25": 109605025,
899
+ "qwen/qwen3-235b-a22b-thinking-2507": 91211877,
900
+ "qwen/qwen3-235b-a22b-04-28": 90524960,
901
+ "qwen/qwen3-coder-480b-a35b-07-25": 58990866,
902
+ "Others": 418996928
903
+ }
904
+ },
905
+ {
906
+ "x": "2025-12-07 00:00:00",
907
+ "ys": {
908
+ "openai/gpt-oss-120b": 1076853394,
909
+ "nvidia/nemotron-nano-9b-v2": 558447623,
910
+ "google/gemma-3n-e4b-it": 289500038,
911
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 141048092,
912
+ "qwen/qwen3-235b-a22b-thinking-2507": 104341926,
913
+ "qwen/qwen3-235b-a22b-04-28": 97308272,
914
+ "mistralai/mistral-small-24b-instruct-2501": 78242547,
915
+ "qwen/qwen3-coder-480b-a35b-07-25": 75039195,
916
+ "qwen/qwen3-235b-a22b-07-25": 74646018,
917
+ "Others": 388529169
918
+ }
919
+ },
920
+ {
921
+ "x": "2025-12-08 00:00:00",
922
+ "ys": {
923
+ "openai/gpt-oss-120b": 1537496572,
924
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 579621852,
925
+ "nvidia/nemotron-nano-9b-v2": 574715022,
926
+ "google/gemma-3n-e4b-it": 439754118,
927
+ "qwen/qwen3-235b-a22b-07-25": 400177460,
928
+ "qwen/qwen-2.5-7b-instruct": 358072095,
929
+ "qwen/qwen3-coder-480b-a35b-07-25": 134282878,
930
+ "qwen/qwen3-235b-a22b-thinking-2507": 132172890,
931
+ "qwen/qwen3-235b-a22b-04-28": 116903023,
932
+ "Others": 661111212
933
+ }
934
+ },
935
+ {
936
+ "x": "2025-12-09 00:00:00",
937
+ "ys": {
938
+ "openai/gpt-oss-120b": 1210669013,
939
+ "qwen/qwen3-next-80b-a3b-thinking-2509": 805429949,
940
+ "nvidia/nemotron-nano-9b-v2": 632780288,
941
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 489125100,
942
+ "qwen/qwen3-235b-a22b-07-25": 298571533,
943
+ "qwen/qwen3-coder-480b-a35b-07-25": 258302925,
944
+ "google/gemma-3n-e4b-it": 201279228,
945
+ "mistralai/mistral-small-24b-instruct-2501": 149161163,
946
+ "qwen/qwen3-235b-a22b-thinking-2507": 103267091,
947
+ "Others": 795388739
948
+ }
949
+ },
950
+ {
951
+ "x": "2025-12-10 00:00:00",
952
+ "ys": {
953
+ "qwen/qwen3-next-80b-a3b-thinking-2509": 1871870022,
954
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 1403700504,
955
+ "nvidia/nemotron-nano-9b-v2": 587489081,
956
+ "openai/gpt-oss-120b": 496110347,
957
+ "google/gemma-3n-e4b-it": 377980176,
958
+ "qwen/qwen3-235b-a22b-07-25": 329650237,
959
+ "openai/gpt-oss-20b": 137667415,
960
+ "mistralai/mistral-small-24b-instruct-2501": 111337475,
961
+ "qwen/qwen3-235b-a22b-04-28": 102177254,
962
+ "Others": 852864319
963
+ }
964
+ },
965
+ {
966
+ "x": "2025-12-11 00:00:00",
967
+ "ys": {
968
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 1286730430,
969
+ "qwen/qwen3-next-80b-a3b-thinking-2509": 1120465662,
970
+ "nvidia/nemotron-nano-9b-v2": 610139245,
971
+ "openai/gpt-oss-120b": 436869644,
972
+ "mistralai/ministral-14b-2512": 313782096,
973
+ "google/gemma-3n-e4b-it": 236752942,
974
+ "qwen/qwen3-235b-a22b-07-25": 204771635,
975
+ "qwen/qwen3-coder-480b-a35b-07-25": 111778342,
976
+ "qwen/qwen3-235b-a22b-04-28": 109182740,
977
+ "Others": 833689146
978
+ }
979
+ },
980
+ {
981
+ "x": "2025-12-12 00:00:00",
982
+ "ys": {
983
+ "qwen/qwen3-next-80b-a3b-thinking-2509": 1648039162,
984
+ "openai/gpt-oss-120b": 852477365,
985
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 709014386,
986
+ "nvidia/nemotron-nano-9b-v2": 520606491,
987
+ "qwen/qwen3-235b-a22b-07-25": 197160637,
988
+ "moonshotai/kimi-k2-0905": 176307247,
989
+ "mistralai/mistral-small-24b-instruct-2501": 156896539,
990
+ "qwen/qwen3-235b-a22b-04-28": 139798789,
991
+ "mistralai/mixtral-8x7b-instruct": 88568804,
992
+ "Others": 804501430
993
+ }
994
+ },
995
+ {
996
+ "x": "2025-12-13 00:00:00",
997
+ "ys": {
998
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 717354353,
999
+ "openai/gpt-oss-120b": 595358946,
1000
+ "nvidia/nemotron-nano-9b-v2": 474446391,
1001
+ "google/gemma-3n-e4b-it": 137580117,
1002
+ "qwen/qwen3-235b-a22b-07-25": 105535696,
1003
+ "qwen/qwen3-235b-a22b-04-28": 91044358,
1004
+ "moonshotai/kimi-k2-0905": 77697400,
1005
+ "z-ai/glm-4.6": 68331272,
1006
+ "deepseek/deepseek-chat-v3-0324": 58712964,
1007
+ "Others": 498559698
1008
+ }
1009
+ },
1010
+ {
1011
+ "x": "2025-12-14 00:00:00",
1012
+ "ys": {
1013
+ "openai/gpt-oss-120b": 840161152,
1014
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 757249094,
1015
+ "nvidia/nemotron-nano-9b-v2": 548167864,
1016
+ "qwen/qwen-2.5-7b-instruct": 245821449,
1017
+ "google/gemma-3n-e4b-it": 117410458,
1018
+ "qwen/qwen3-235b-a22b-07-25": 89323384,
1019
+ "mistralai/mistral-small-24b-instruct-2501": 84216344,
1020
+ "qwen/qwen3-235b-a22b-04-28": 81001499,
1021
+ "z-ai/glm-4.6": 73326165,
1022
+ "Others": 574834124
1023
+ }
1024
+ },
1025
+ {
1026
+ "x": "2025-12-15 00:00:00",
1027
+ "ys": {
1028
+ "openai/gpt-oss-120b": 1179899996,
1029
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 739150446,
1030
+ "nvidia/nemotron-nano-9b-v2": 494029716,
1031
+ "qwen/qwen3-235b-a22b-07-25": 179505865,
1032
+ "qwen/qwen3-235b-a22b-thinking-2507": 173728427,
1033
+ "qwen/qwen3-next-80b-a3b-thinking-2509": 167425459,
1034
+ "google/gemma-3n-e4b-it": 127919076,
1035
+ "z-ai/glm-4.6": 124414883,
1036
+ "qwen/qwen3-235b-a22b-04-28": 84658439,
1037
+ "Others": 700709082
1038
+ }
1039
+ },
1040
+ {
1041
+ "x": "2025-12-16 00:00:00",
1042
+ "ys": {
1043
+ "openai/gpt-oss-120b": 647297632,
1044
+ "nvidia/nemotron-nano-9b-v2": 537067639,
1045
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 252276339,
1046
+ "google/gemma-3n-e4b-it": 140460380,
1047
+ "z-ai/glm-4.6": 139591544,
1048
+ "qwen/qwen3-next-80b-a3b-thinking-2509": 127763650,
1049
+ "qwen/qwen3-235b-a22b-07-25": 121950418,
1050
+ "meta-llama/llama-3.3-70b-instruct": 95061380,
1051
+ "mistralai/mistral-small-24b-instruct-2501": 84346839,
1052
+ "Others": 747252159
1053
+ }
1054
+ },
1055
+ {
1056
+ "x": "2025-12-17 00:00:00",
1057
+ "ys": {
1058
+ "nvidia/nemotron-nano-9b-v2": 559649972,
1059
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 486783564,
1060
+ "google/gemma-3n-e4b-it": 372525151,
1061
+ "meta-llama/llama-3.3-70b-instruct": 196221975,
1062
+ "qwen/qwen3-235b-a22b-thinking-2507": 167817143,
1063
+ "openai/gpt-oss-120b": 140672505,
1064
+ "qwen/qwen3-235b-a22b-07-25": 109695521,
1065
+ "z-ai/glm-4.6": 107981583,
1066
+ "mistralai/ministral-14b-2512": 102282836,
1067
+ "Others": 819788269
1068
+ }
1069
+ },
1070
+ {
1071
+ "x": "2025-12-18 00:00:00",
1072
+ "ys": {
1073
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 662430315,
1074
+ "qwen/qwen3-vl-32b-instruct": 508761876,
1075
+ "nvidia/nemotron-nano-9b-v2": 506341182,
1076
+ "google/gemma-3n-e4b-it": 343832064,
1077
+ "openai/gpt-oss-120b": 166074784,
1078
+ "mistralai/ministral-14b-2512": 154058447,
1079
+ "z-ai/glm-4.6": 116087348,
1080
+ "qwen/qwen3-235b-a22b-07-25": 110171492,
1081
+ "meta-llama/llama-3.1-70b-instruct": 103001660,
1082
+ "Others": 844348483
1083
+ }
1084
+ },
1085
+ {
1086
+ "x": "2025-12-19 00:00:00",
1087
+ "ys": {
1088
+ "qwen/qwen3-vl-32b-instruct": 694338884,
1089
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 276705816,
1090
+ "deepseek/deepseek-chat-v3-0324": 113145401,
1091
+ "qwen/qwen3-235b-a22b-04-28": 105133834,
1092
+ "meta-llama/llama-3.1-70b-instruct": 85400213,
1093
+ "qwen/qwen3-vl-8b-instruct": 81991925,
1094
+ "google/gemma-3n-e4b-it": 75470152,
1095
+ "qwen/qwen3-235b-a22b-07-25": 73910617,
1096
+ "moonshotai/kimi-k2-0905": 67608154,
1097
+ "Others": 523150895
1098
+ }
1099
+ },
1100
+ {
1101
+ "x": "2025-12-20 00:00:00",
1102
+ "ys": {
1103
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 1307854309,
1104
+ "qwen/qwen3-235b-a22b-07-25": 163197644,
1105
+ "qwen/qwen3-235b-a22b-04-28": 114352259,
1106
+ "qwen/qwen3-vl-8b-instruct": 98193760,
1107
+ "google/gemma-3n-e4b-it": 96891716,
1108
+ "deepseek/deepseek-chat-v3-0324": 88274046,
1109
+ "qwen/qwen3-vl-32b-instruct": 85306166,
1110
+ "mistralai/mixtral-8x7b-instruct": 69375066,
1111
+ "meta-llama/llama-3.1-70b-instruct": 56781626,
1112
+ "Others": 467257110
1113
+ }
1114
+ },
1115
+ {
1116
+ "x": "2025-12-21 00:00:00",
1117
+ "ys": {
1118
+ "qwen/qwen3-235b-a22b-07-25": 215910113,
1119
+ "meta-llama/llama-3.1-70b-instruct": 134053649,
1120
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 128509201,
1121
+ "deepseek/deepseek-chat-v3-0324": 92607692,
1122
+ "qwen/qwen3-235b-a22b-04-28": 91005913,
1123
+ "google/gemma-3n-e4b-it": 89605363,
1124
+ "qwen/qwen3-vl-8b-instruct": 77698273,
1125
+ "z-ai/glm-4.6": 75126381,
1126
+ "mistralai/ministral-14b-2512": 69310994,
1127
+ "Others": 457731034
1128
+ }
1129
+ },
1130
+ {
1131
+ "x": "2025-12-22 00:00:00",
1132
+ "ys": {
1133
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 508177362,
1134
+ "meta-llama/llama-3.1-70b-instruct": 143925418,
1135
+ "qwen/qwen-2.5-7b-instruct": 133588216,
1136
+ "z-ai/glm-4.6": 132505173,
1137
+ "google/gemma-3n-e4b-it": 113868954,
1138
+ "moonshotai/kimi-k2-0905": 112506280,
1139
+ "deepseek/deepseek-chat-v3-0324": 92823782,
1140
+ "qwen/qwen3-235b-a22b-04-28": 72005407,
1141
+ "qwen/qwen3-vl-8b-instruct": 64325709,
1142
+ "Others": 575271897
1143
+ }
1144
+ },
1145
+ {
1146
+ "x": "2025-12-23 00:00:00",
1147
+ "ys": {
1148
+ "qwen/qwen-2.5-7b-instruct": 393539061,
1149
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 269629523,
1150
+ "meta-llama/llama-3.1-70b-instruct": 229431574,
1151
+ "google/gemma-3n-e4b-it": 110133148,
1152
+ "moonshotai/kimi-k2-0905": 103825166,
1153
+ "deepseek/deepseek-chat-v3-0324": 96558816,
1154
+ "mistralai/mistral-7b-instruct-v0.3": 92052689,
1155
+ "qwen/qwen3-vl-8b-instruct": 76898915,
1156
+ "mistralai/mixtral-8x7b-instruct": 74284648,
1157
+ "Others": 639068842
1158
+ }
1159
+ },
1160
+ {
1161
+ "x": "2025-12-24 00:00:00",
1162
+ "ys": {
1163
+ "qwen/qwen-2.5-7b-instruct": 243532877,
1164
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 226060566,
1165
+ "qwen/qwen3-235b-a22b-07-25": 214004388,
1166
+ "deepseek/deepseek-chat-v3-0324": 92729488,
1167
+ "qwen/qwen3-vl-8b-instruct": 88739081,
1168
+ "meta-llama/llama-3.1-70b-instruct": 81564680,
1169
+ "qwen/qwen3-235b-a22b-04-28": 76990408,
1170
+ "mistralai/mixtral-8x7b-instruct": 72979750,
1171
+ "moonshotai/kimi-k2-0905": 71196588,
1172
+ "Others": 487077862
1173
+ }
1174
+ },
1175
+ {
1176
+ "x": "2025-12-25 00:00:00",
1177
+ "ys": {
1178
+ "qwen/qwen3-vl-32b-instruct": 383888286,
1179
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 261965463,
1180
+ "mistralai/ministral-14b-2512": 99057112,
1181
+ "meta-llama/llama-3.1-70b-instruct": 88702343,
1182
+ "qwen/qwen3-235b-a22b-04-28": 81992267,
1183
+ "deepseek/deepseek-chat-v3-0324": 74398179,
1184
+ "qwen/qwen3-235b-a22b-07-25": 63225013,
1185
+ "meta-llama/llama-4-scout-17b-16e-instruct": 55012295,
1186
+ "mistralai/mixtral-8x7b-instruct": 47759137,
1187
+ "Others": 413823028
1188
+ }
1189
+ },
1190
+ {
1191
+ "x": "2025-12-26 00:00:00",
1192
+ "ys": {
1193
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 343299450,
1194
+ "qwen/qwen3-235b-a22b-07-25": 263094480,
1195
+ "google/gemma-3n-e4b-it": 120768566,
1196
+ "qwen/qwen3-235b-a22b-04-28": 104640831,
1197
+ "deepseek/deepseek-chat-v3-0324": 90226682,
1198
+ "meta-llama/llama-3.1-70b-instruct": 88973804,
1199
+ "moonshotai/kimi-k2-0905": 77954622,
1200
+ "qwen/qwen3-vl-8b-instruct": 52954580,
1201
+ "qwen/qwen3-235b-a22b-thinking-2507": 43036440,
1202
+ "Others": 428366172
1203
+ }
1204
+ },
1205
+ {
1206
+ "x": "2025-12-27 00:00:00",
1207
+ "ys": {
1208
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 1387706213,
1209
+ "qwen/qwen3-235b-a22b-07-25": 452793564,
1210
+ "qwen/qwen-2.5-7b-instruct": 125200530,
1211
+ "google/gemma-3n-e4b-it": 121577797,
1212
+ "qwen/qwen3-235b-a22b-04-28": 109049338,
1213
+ "meta-llama/llama-3.1-70b-instruct": 102887392,
1214
+ "deepseek/deepseek-chat-v3-0324": 91102999,
1215
+ "moonshotai/kimi-k2-0905": 87102931,
1216
+ "qwen/qwen3-vl-32b-instruct": 38375523,
1217
+ "Others": 415037444
1218
+ }
1219
+ },
1220
+ {
1221
+ "x": "2025-12-28 00:00:00",
1222
+ "ys": {
1223
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 303700480,
1224
+ "qwen/qwen3-235b-a22b-07-25": 250252831,
1225
+ "qwen/qwen-2.5-7b-instruct": 241558246,
1226
+ "openai/gpt-oss-20b": 178706412,
1227
+ "google/gemma-3n-e4b-it": 130666908,
1228
+ "meta-llama/llama-3.1-70b-instruct": 123077740,
1229
+ "qwen/qwen3-235b-a22b-04-28": 94642118,
1230
+ "deepseek/deepseek-chat-v3-0324": 86638238,
1231
+ "moonshotai/kimi-k2-0905": 76681739,
1232
+ "Others": 435048076
1233
+ }
1234
+ },
1235
+ {
1236
+ "x": "2025-12-29 00:00:00",
1237
+ "ys": {
1238
+ "qwen/qwen3-235b-a22b-07-25": 649203987,
1239
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 261926576,
1240
+ "qwen/qwen-2.5-72b-instruct": 194574429,
1241
+ "meta-llama/llama-3.1-70b-instruct": 165709541,
1242
+ "google/gemma-3n-e4b-it": 138829302,
1243
+ "z-ai/glm-4.6": 87104969,
1244
+ "qwen/qwen3-235b-a22b-04-28": 84629098,
1245
+ "deepseek/deepseek-chat-v3-0324": 84467415,
1246
+ "moonshotai/kimi-k2-0905": 78680391,
1247
+ "Others": 647265095
1248
+ }
1249
+ },
1250
+ {
1251
+ "x": "2025-12-30 00:00:00",
1252
+ "ys": {
1253
+ "qwen/qwen3-235b-a22b-07-25": 785828004,
1254
+ "z-ai/glm-4.6": 446974107,
1255
+ "google/gemma-3n-e4b-it": 162375704,
1256
+ "qwen/qwen3-vl-8b-instruct": 133737335,
1257
+ "meta-llama/llama-3.1-70b-instruct": 131979997,
1258
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 113827091,
1259
+ "qwen/qwen3-235b-a22b-04-28": 89723450,
1260
+ "openai/gpt-oss-20b": 76633932,
1261
+ "deepseek/deepseek-chat-v3-0324": 75425085,
1262
+ "Others": 701688897
1263
+ }
1264
+ },
1265
+ {
1266
+ "x": "2025-12-31 00:00:00",
1267
+ "ys": {
1268
+ "z-ai/glm-4.6": 941381500,
1269
+ "qwen/qwen3-235b-a22b-07-25": 359301787,
1270
+ "mistralai/ministral-14b-2512": 192460311,
1271
+ "qwen/qwen3-vl-8b-instruct": 152970483,
1272
+ "google/gemma-3n-e4b-it": 99669854,
1273
+ "qwen/qwen3-235b-a22b-04-28": 97523092,
1274
+ "meta-llama/llama-3.1-70b-instruct": 96229798,
1275
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 84145400,
1276
+ "moonshotai/kimi-k2-0905": 69943569,
1277
+ "Others": 572880331
1278
+ }
1279
+ },
1280
+ {
1281
+ "x": "2026-01-01 00:00:00",
1282
+ "ys": {
1283
+ "z-ai/glm-4.6": 939192348,
1284
+ "mistralai/ministral-14b-2512": 484885200,
1285
+ "meta-llama/llama-3.1-70b-instruct": 215701350,
1286
+ "qwen/qwen-2.5-7b-instruct": 200323947,
1287
+ "qwen/qwen3-vl-8b-instruct": 188450589,
1288
+ "qwen/qwen3-235b-a22b-04-28": 94834267,
1289
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 91444853,
1290
+ "qwen/qwen3-235b-a22b-07-25": 85335106,
1291
+ "google/gemma-3n-e4b-it": 80132420,
1292
+ "Others": 516383784
1293
+ }
1294
+ },
1295
+ {
1296
+ "x": "2026-01-02 00:00:00",
1297
+ "ys": {
1298
+ "z-ai/glm-4.6": 1057698092,
1299
+ "mistralai/ministral-14b-2512": 468058577,
1300
+ "qwen/qwen3-vl-8b-instruct": 267734135,
1301
+ "google/gemma-3n-e4b-it": 161137336,
1302
+ "meta-llama/llama-3.1-70b-instruct": 160884188,
1303
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 134738211,
1304
+ "qwen/qwen3-235b-a22b-04-28": 121982534,
1305
+ "qwen/qwen-2.5-7b-instruct": 94095749,
1306
+ "meta-llama/llama-3.2-3b-instruct": 82661986,
1307
+ "Others": 715202450
1308
+ }
1309
+ },
1310
+ {
1311
+ "x": "2026-01-03 00:00:00",
1312
+ "ys": {
1313
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 1337801334,
1314
+ "z-ai/glm-4.6": 1017463081,
1315
+ "mistralai/ministral-14b-2512": 453377186,
1316
+ "qwen/qwen3-vl-8b-instruct": 329452285,
1317
+ "google/gemma-3n-e4b-it": 185617189,
1318
+ "meta-llama/llama-3.1-70b-instruct": 122460938,
1319
+ "qwen/qwen3-235b-a22b-04-28": 105734020,
1320
+ "moonshotai/kimi-k2-0905": 102348200,
1321
+ "deepseek/deepseek-chat-v3-0324": 90488087,
1322
+ "Others": 644920684
1323
+ }
1324
+ },
1325
+ {
1326
+ "x": "2026-01-04 00:00:00",
1327
+ "ys": {
1328
+ "z-ai/glm-4.6": 1032384197,
1329
+ "moonshotai/kimi-k2-0905": 375556762,
1330
+ "qwen/qwen-2.5-7b-instruct": 259986005,
1331
+ "mistralai/ministral-14b-2512": 195079511,
1332
+ "qwen/qwen3-vl-8b-instruct": 185400244,
1333
+ "meta-llama/llama-3.1-70b-instruct": 179457394,
1334
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 126707766,
1335
+ "meta-llama/llama-4-scout-17b-16e-instruct": 126498266,
1336
+ "google/gemma-3n-e4b-it": 121493870,
1337
+ "Others": 725312947
1338
+ }
1339
+ },
1340
+ {
1341
+ "x": "2026-01-05 00:00:00",
1342
+ "ys": {
1343
+ "z-ai/glm-4.6": 698212434,
1344
+ "qwen/qwen-2.5-7b-instruct": 231922124,
1345
+ "moonshotai/kimi-k2-0905": 210247717,
1346
+ "google/gemma-3n-e4b-it": 176280174,
1347
+ "meta-llama/llama-4-maverick-17b-128e-instruct": 149328734,
1348
+ "qwen/qwen3-vl-8b-instruct": 149276458,
1349
+ "meta-llama/llama-3.1-70b-instruct": 127409084,
1350
+ "openai/gpt-oss-20b": 103876873,
1351
+ "qwen/qwen3-235b-a22b-04-28": 101345264,
1352
+ "Others": 808745663
1353
+ }
1354
+ }
1355
+ ],
1356
+ "fetched_at": "2026-01-06T00:09:40.357812",
1357
+ "success": true
1358
+ }
data/summary.json ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "fetched_at": "2026-01-06T00:09:40.845345",
3
+ "providers": {
4
+ "anthropic": {
5
+ "data_points": 90,
6
+ "unique_models": 14,
7
+ "total_tokens": 3864063364595,
8
+ "date_range": {
9
+ "start": "2025-10-08 00:00:00",
10
+ "end": "2026-01-05 00:00:00"
11
+ }
12
+ },
13
+ "baseten": {
14
+ "data_points": 90,
15
+ "unique_models": 14,
16
+ "total_tokens": 129163046440,
17
+ "date_range": {
18
+ "start": "2025-10-08 00:00:00",
19
+ "end": "2026-01-05 00:00:00"
20
+ }
21
+ },
22
+ "fireworks": {
23
+ "data_points": 90,
24
+ "unique_models": 25,
25
+ "total_tokens": 374965240797,
26
+ "date_range": {
27
+ "start": "2025-10-09 00:00:00",
28
+ "end": "2026-01-06 00:00:00"
29
+ }
30
+ },
31
+ "google-vertex": {
32
+ "data_points": 90,
33
+ "unique_models": 17,
34
+ "total_tokens": 15993436820202,
35
+ "date_range": {
36
+ "start": "2025-10-08 00:00:00",
37
+ "end": "2026-01-05 00:00:00"
38
+ }
39
+ },
40
+ "groq": {
41
+ "data_points": 90,
42
+ "unique_models": 14,
43
+ "total_tokens": 781103099428,
44
+ "date_range": {
45
+ "start": "2025-10-08 00:00:00",
46
+ "end": "2026-01-05 00:00:00"
47
+ }
48
+ },
49
+ "nebius": {
50
+ "data_points": 90,
51
+ "unique_models": 27,
52
+ "total_tokens": 651904835826,
53
+ "date_range": {
54
+ "start": "2025-10-08 00:00:00",
55
+ "end": "2026-01-05 00:00:00"
56
+ }
57
+ },
58
+ "novita": {
59
+ "data_points": 90,
60
+ "unique_models": 36,
61
+ "total_tokens": 2956550494177,
62
+ "date_range": {
63
+ "start": "2025-10-08 00:00:00",
64
+ "end": "2026-01-05 00:00:00"
65
+ }
66
+ },
67
+ "openai": {
68
+ "data_points": 90,
69
+ "unique_models": 18,
70
+ "total_tokens": 5546109041357,
71
+ "date_range": {
72
+ "start": "2025-10-08 00:00:00",
73
+ "end": "2026-01-05 00:00:00"
74
+ }
75
+ },
76
+ "together": {
77
+ "data_points": 90,
78
+ "unique_models": 37,
79
+ "total_tokens": 360171340833,
80
+ "date_range": {
81
+ "start": "2025-10-08 00:00:00",
82
+ "end": "2026-01-05 00:00:00"
83
+ }
84
+ }
85
+ }
86
+ }
requirements.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ fastapi==0.104.1
2
+ uvicorn[standard]==0.24.0
3
+ jinja2==3.1.2
4
+
templates/dashboard.html ADDED
@@ -0,0 +1,1353 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>OpenRouter Provider Comparison Dashboard</title>
7
+ <style>
8
+ * {
9
+ margin: 0;
10
+ padding: 0;
11
+ box-sizing: border-box;
12
+ }
13
+
14
+ body {
15
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
16
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
17
+ min-height: 100vh;
18
+ padding: 20px;
19
+ }
20
+
21
+ .container {
22
+ max-width: 1400px;
23
+ margin: 0 auto;
24
+ }
25
+
26
+ h1 {
27
+ color: white;
28
+ text-align: center;
29
+ margin-bottom: 10px;
30
+ font-size: 2.5em;
31
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
32
+ }
33
+
34
+ .subtitle {
35
+ color: rgba(255,255,255,0.9);
36
+ text-align: center;
37
+ margin-bottom: 30px;
38
+ font-size: 1.1em;
39
+ }
40
+
41
+ .stats-grid {
42
+ display: grid;
43
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
44
+ gap: 20px;
45
+ margin-bottom: 30px;
46
+ }
47
+
48
+ .stat-card {
49
+ background: white;
50
+ border-radius: 12px;
51
+ padding: 24px;
52
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
53
+ transition: all 0.3s ease;
54
+ cursor: pointer;
55
+ position: relative;
56
+ }
57
+
58
+ .stat-card:hover {
59
+ transform: translateY(-5px);
60
+ box-shadow: 0 8px 12px rgba(0,0,0,0.15);
61
+ }
62
+
63
+ .eye-icon {
64
+ position: absolute;
65
+ top: 20px;
66
+ right: 20px;
67
+ font-size: 1.5em;
68
+ }
69
+
70
+ .provider-link {
71
+ display: block;
72
+ margin-top: 16px;
73
+ font-size: 0.75em;
74
+ color: #667eea;
75
+ text-decoration: none;
76
+ transition: all 0.2s;
77
+ z-index: 10;
78
+ padding: 6px 10px;
79
+ background: rgba(102, 126, 234, 0.1);
80
+ border-radius: 4px;
81
+ white-space: nowrap;
82
+ text-align: center;
83
+ }
84
+
85
+ .provider-link:hover {
86
+ background: rgba(102, 126, 234, 0.2);
87
+ transform: translateY(-2px);
88
+ }
89
+
90
+ .stat-card h3 {
91
+ color: #333;
92
+ font-size: 1.2em;
93
+ margin-bottom: 12px;
94
+ text-transform: capitalize;
95
+ font-weight: 600;
96
+ }
97
+
98
+ .stat-value {
99
+ color: #667eea;
100
+ font-size: 2.2em;
101
+ font-weight: bold;
102
+ margin: 12px 0;
103
+ }
104
+
105
+ .stat-label {
106
+ color: #666;
107
+ font-size: 0.95em;
108
+ margin-top: 8px;
109
+ }
110
+
111
+ .stat-sublabel {
112
+ color: #999;
113
+ font-size: 0.85em;
114
+ margin-top: 4px;
115
+ }
116
+
117
+ .chart-section {
118
+ background: white;
119
+ border-radius: 12px;
120
+ padding: 30px;
121
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
122
+ margin-bottom: 30px;
123
+ }
124
+
125
+ .chart-header {
126
+ display: flex;
127
+ justify-content: space-between;
128
+ align-items: center;
129
+ margin-bottom: 24px;
130
+ flex-wrap: wrap;
131
+ gap: 15px;
132
+ }
133
+
134
+ .chart-title {
135
+ color: #333;
136
+ font-size: 1.6em;
137
+ font-weight: 600;
138
+ }
139
+
140
+ .controls {
141
+ display: flex;
142
+ gap: 10px;
143
+ flex-wrap: wrap;
144
+ }
145
+
146
+ button {
147
+ background: #667eea;
148
+ color: white;
149
+ border: none;
150
+ padding: 10px 20px;
151
+ border-radius: 8px;
152
+ cursor: pointer;
153
+ font-size: 0.9em;
154
+ transition: background 0.2s;
155
+ font-weight: 500;
156
+ }
157
+
158
+ button:hover {
159
+ background: #5568d3;
160
+ }
161
+
162
+ button.active {
163
+ background: #764ba2;
164
+ }
165
+
166
+ .bar-chart {
167
+ margin: 20px 0;
168
+ }
169
+
170
+ .bar-row {
171
+ display: flex;
172
+ align-items: center;
173
+ margin-bottom: 16px;
174
+ gap: 12px;
175
+ }
176
+
177
+ .bar-label {
178
+ min-width: 140px;
179
+ font-weight: 500;
180
+ color: #333;
181
+ text-transform: capitalize;
182
+ font-size: 0.95em;
183
+ }
184
+
185
+ .bar-container {
186
+ flex: 1;
187
+ background: #f0f0f0;
188
+ border-radius: 6px;
189
+ height: 32px;
190
+ position: relative;
191
+ overflow: hidden;
192
+ }
193
+
194
+ .bar-fill {
195
+ height: 100%;
196
+ border-radius: 6px;
197
+ transition: width 0.5s ease;
198
+ display: flex;
199
+ align-items: center;
200
+ padding: 0 12px;
201
+ color: white;
202
+ font-weight: 600;
203
+ font-size: 0.85em;
204
+ text-shadow:
205
+ -1px -1px 0 #000,
206
+ 1px -1px 0 #000,
207
+ -1px 1px 0 #000,
208
+ 1px 1px 0 #000;
209
+ }
210
+
211
+ .timeline-chart {
212
+ margin: 20px 0;
213
+ overflow-x: auto;
214
+ }
215
+
216
+ .timeline-grid {
217
+ display: grid;
218
+ gap: 2px;
219
+ min-width: 800px;
220
+ }
221
+
222
+ .timeline-row {
223
+ display: grid;
224
+ grid-template-columns: 140px 1fr;
225
+ gap: 12px;
226
+ align-items: center;
227
+ }
228
+
229
+ .timeline-label {
230
+ font-weight: 500;
231
+ color: #333;
232
+ text-transform: capitalize;
233
+ font-size: 0.9em;
234
+ }
235
+
236
+ .timeline-line {
237
+ position: relative;
238
+ height: 60px;
239
+ }
240
+
241
+ .timeline-line svg {
242
+ width: 100%;
243
+ height: 100%;
244
+ }
245
+
246
+ .loading {
247
+ text-align: center;
248
+ padding: 40px;
249
+ color: white;
250
+ font-size: 1.2em;
251
+ }
252
+
253
+ .error {
254
+ background: #fee;
255
+ color: #c33;
256
+ padding: 20px;
257
+ border-radius: 8px;
258
+ margin: 20px 0;
259
+ }
260
+
261
+ .info-text {
262
+ color: #666;
263
+ font-size: 0.9em;
264
+ margin-top: 12px;
265
+ font-style: italic;
266
+ text-decoration: none;
267
+ }
268
+
269
+ .model-search {
270
+ margin-bottom: 20px;
271
+ }
272
+
273
+ .model-search input {
274
+ width: 100%;
275
+ padding: 12px 16px;
276
+ border: 2px solid #e0e0e0;
277
+ border-radius: 8px;
278
+ font-size: 1em;
279
+ transition: border-color 0.2s;
280
+ }
281
+
282
+ .model-search input:focus {
283
+ outline: none;
284
+ border-color: #667eea;
285
+ }
286
+
287
+ .model-search-results {
288
+ max-height: 300px;
289
+ overflow-y: auto;
290
+ border: 1px solid #e0e0e0;
291
+ border-radius: 8px;
292
+ margin-top: 10px;
293
+ background: white;
294
+ }
295
+
296
+ .model-search-item {
297
+ padding: 12px 16px;
298
+ cursor: pointer;
299
+ border-bottom: 1px solid #f0f0f0;
300
+ transition: background 0.2s;
301
+ }
302
+
303
+ .model-search-item:hover {
304
+ background: #f5f5f5;
305
+ }
306
+
307
+ .model-search-item:last-child {
308
+ border-bottom: none;
309
+ }
310
+
311
+ .time-span-info {
312
+ background: #f0f7ff;
313
+ border-left: 4px solid #667eea;
314
+ padding: 12px 16px;
315
+ margin-bottom: 20px;
316
+ border-radius: 4px;
317
+ color: #333;
318
+ font-size: 0.95em;
319
+ }
320
+
321
+ .chart-tooltip {
322
+ position: absolute;
323
+ background: rgba(0, 0, 0, 0.9);
324
+ color: white;
325
+ padding: 12px 16px;
326
+ border-radius: 8px;
327
+ font-size: 0.85em;
328
+ pointer-events: none;
329
+ z-index: 1000;
330
+ max-width: 300px;
331
+ box-shadow: 0 4px 12px rgba(0,0,0,0.3);
332
+ }
333
+
334
+ .chart-tooltip-date {
335
+ font-weight: bold;
336
+ margin-bottom: 8px;
337
+ border-bottom: 1px solid rgba(255,255,255,0.3);
338
+ padding-bottom: 6px;
339
+ }
340
+
341
+ .chart-tooltip-item {
342
+ display: flex;
343
+ justify-content: space-between;
344
+ align-items: center;
345
+ margin: 4px 0;
346
+ gap: 12px;
347
+ }
348
+
349
+ .chart-tooltip-color {
350
+ display: inline-block;
351
+ width: 12px;
352
+ height: 12px;
353
+ border-radius: 2px;
354
+ margin-right: 6px;
355
+ }
356
+
357
+ .view-selector {
358
+ display: flex;
359
+ gap: 10px;
360
+ margin-bottom: 20px;
361
+ }
362
+
363
+ .view-selector button {
364
+ flex: 1;
365
+ }
366
+
367
+ select {
368
+ width: 100%;
369
+ padding: 12px 16px;
370
+ border: 2px solid #e0e0e0;
371
+ border-radius: 8px;
372
+ font-size: 1em;
373
+ background: white;
374
+ cursor: pointer;
375
+ transition: border-color 0.2s;
376
+ }
377
+
378
+ select:focus {
379
+ outline: none;
380
+ border-color: #667eea;
381
+ }
382
+
383
+ .days-slider-container {
384
+ background: white;
385
+ border-radius: 12px;
386
+ padding: 20px;
387
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
388
+ margin-bottom: 30px;
389
+ }
390
+
391
+ .days-slider-label {
392
+ display: flex;
393
+ justify-content: space-between;
394
+ align-items: center;
395
+ margin-bottom: 12px;
396
+ flex-wrap: wrap;
397
+ gap: 10px;
398
+ }
399
+
400
+ .days-slider-label h3 {
401
+ color: #333;
402
+ font-size: 1.1em;
403
+ font-weight: 600;
404
+ margin: 0;
405
+ }
406
+
407
+ .days-slider-value {
408
+ color: #667eea;
409
+ font-size: 1.2em;
410
+ font-weight: bold;
411
+ }
412
+
413
+ .days-slider {
414
+ width: 100%;
415
+ height: 8px;
416
+ border-radius: 4px;
417
+ background: #e0e0e0;
418
+ outline: none;
419
+ -webkit-appearance: none;
420
+ appearance: none;
421
+ }
422
+
423
+ .days-slider::-webkit-slider-thumb {
424
+ -webkit-appearance: none;
425
+ appearance: none;
426
+ width: 20px;
427
+ height: 20px;
428
+ border-radius: 50%;
429
+ background: #667eea;
430
+ cursor: pointer;
431
+ box-shadow: 0 2px 4px rgba(0,0,0,0.2);
432
+ }
433
+
434
+ .days-slider::-moz-range-thumb {
435
+ width: 20px;
436
+ height: 20px;
437
+ border-radius: 50%;
438
+ background: #667eea;
439
+ cursor: pointer;
440
+ border: none;
441
+ box-shadow: 0 2px 4px rgba(0,0,0,0.2);
442
+ }
443
+
444
+ .days-slider-info {
445
+ color: #666;
446
+ font-size: 0.9em;
447
+ margin-top: 8px;
448
+ font-style: italic;
449
+ }
450
+
451
+ @media (max-width: 768px) {
452
+ h1 {
453
+ font-size: 1.8em;
454
+ }
455
+
456
+ .stats-grid {
457
+ grid-template-columns: 1fr;
458
+ }
459
+
460
+ .bar-label {
461
+ min-width: 100px;
462
+ font-size: 0.85em;
463
+ }
464
+ }
465
+ </style>
466
+ </head>
467
+ <body>
468
+ <div class="container">
469
+ <h1>OpenRouter Provider Dashboard</h1>
470
+ <p class="subtitle">Compare token usage across providers | Click cards to filter charts</p>
471
+
472
+ <div id="loading" class="loading">Loading data...</div>
473
+ <div id="error" class="error" style="display: none;"></div>
474
+
475
+ <div id="daysSliderContainer" class="days-slider-container" style="display: none;">
476
+ <div class="days-slider-label">
477
+ <h3>Days to Sum Over</h3>
478
+ <span class="days-slider-value" id="daysSliderValue">90 days</span>
479
+ </div>
480
+ <input type="range" id="daysSlider" class="days-slider" min="1" max="365" value="90" step="1">
481
+ <div class="days-slider-info">Summing data from the last <span id="daysSliderInfo">90</span> days from today</div>
482
+ </div>
483
+
484
+ <div id="stats" class="stats-grid" style="display: none;"></div>
485
+
486
+ <div id="charts" style="display: none;">
487
+ <div class="chart-section">
488
+ <div class="chart-header">
489
+ <h2 class="chart-title">Daily Token Usage Over Time</h2>
490
+ <div class="controls">
491
+ <button onclick="setTimeRange('all')" class="active" id="btn-all">All Time</button>
492
+ <button onclick="setTimeRange(30)" id="btn-30">Last 30 Days</button>
493
+ <button onclick="setTimeRange(7)" id="btn-7">Last 7 Days</button>
494
+ </div>
495
+ </div>
496
+ <div id="combinedChart" style="position: relative; height: 500px;"></div>
497
+ <p class="info-text">Click provider cards above to show/hide providers • Lines show daily token counts</p>
498
+ </div>
499
+
500
+ <div class="chart-section">
501
+ <div class="chart-header">
502
+ <h2 class="chart-title">Average Daily Tokens by Provider</h2>
503
+ </div>
504
+ <div id="avgDailyChart" class="bar-chart"></div>
505
+ </div>
506
+
507
+ <div class="chart-section">
508
+ <div class="chart-header">
509
+ <h2 class="chart-title">Deep Dive: Models & Providers</h2>
510
+ </div>
511
+ <div class="view-selector">
512
+ <button onclick="setDeepDiveView('models-by-provider')" class="active" id="btn-models-by-provider">Models by Provider</button>
513
+ <button onclick="setDeepDiveView('providers-by-model')" id="btn-providers-by-model">Providers by Model</button>
514
+ </div>
515
+ <div id="deepDiveSelector" style="margin-bottom: 20px;"></div>
516
+ <div id="deepDiveChart"></div>
517
+ </div>
518
+
519
+ <div class="chart-section">
520
+ <div class="chart-header">
521
+ <h2 class="chart-title">Model Distribution Across Providers</h2>
522
+ </div>
523
+ <div id="timeSpanInfo" class="time-span-info"></div>
524
+ <div class="model-search">
525
+ <input type="text" id="modelSearchInput" placeholder="Search for a model (e.g., gpt, claude, llama)..." />
526
+ <div id="modelSearchResults" class="model-search-results" style="display: none;"></div>
527
+ </div>
528
+ <div id="modelDistChart"></div>
529
+ <p class="info-text">Shows which providers serve each model and their cumulative token counts</p>
530
+ </div>
531
+ </div>
532
+ </div>
533
+
534
+ <script>
535
+ let fullData = null;
536
+ let selectedProviders = new Set();
537
+ let currentTimeRange = 'all';
538
+ let daysToSum = 90; // Default to 90 days
539
+
540
+ const COLORS = [
541
+ '#667eea', '#764ba2', '#f093fb', '#4facfe',
542
+ '#43e97b', '#fa709a', '#fee140', '#30cfd0',
543
+ '#a8edea', '#ff6b6b', '#4ecdc4', '#45b7d1'
544
+ ];
545
+
546
+ async function loadData() {
547
+ try {
548
+ const response = await fetch('data/full_data.json');
549
+ if (!response.ok) throw new Error('Failed to load data');
550
+
551
+ fullData = await response.json();
552
+
553
+ document.getElementById('loading').style.display = 'none';
554
+ document.getElementById('stats').style.display = 'grid';
555
+ document.getElementById('charts').style.display = 'block';
556
+ document.getElementById('daysSliderContainer').style.display = 'block';
557
+
558
+ // Select all providers by default
559
+ fullData.providers.forEach(p => {
560
+ if (p.success) selectedProviders.add(p.provider);
561
+ });
562
+
563
+ setupDaysSlider();
564
+ renderStats();
565
+ renderCharts();
566
+ } catch (error) {
567
+ document.getElementById('loading').style.display = 'none';
568
+ const errorEl = document.getElementById('error');
569
+ errorEl.textContent = `Error: ${error.message}. Make sure you've run fetch_all_providers.py first!`;
570
+ errorEl.style.display = 'block';
571
+ }
572
+ }
573
+
574
+ function formatNumber(num) {
575
+ if (num >= 1e12) return (num / 1e12).toFixed(2) + 'T';
576
+ if (num >= 1e9) return (num / 1e9).toFixed(2) + 'B';
577
+ if (num >= 1e6) return (num / 1e6).toFixed(2) + 'M';
578
+ if (num >= 1e3) return (num / 1e3).toFixed(2) + 'K';
579
+ return num.toString();
580
+ }
581
+
582
+ function filterDataByDays(data, days) {
583
+ if (!data || data.length === 0) return [];
584
+
585
+ const today = new Date();
586
+ today.setHours(0, 0, 0, 0);
587
+ const cutoffDate = new Date(today);
588
+ cutoffDate.setDate(cutoffDate.getDate() - days);
589
+
590
+ return data.filter(point => {
591
+ const pointDateStr = point.x.split(' ')[0]; // Get YYYY-MM-DD part
592
+ const pointDate = new Date(pointDateStr);
593
+ pointDate.setHours(0, 0, 0, 0);
594
+ return pointDate >= cutoffDate && pointDate <= today;
595
+ });
596
+ }
597
+
598
+ function setupDaysSlider() {
599
+ const slider = document.getElementById('daysSlider');
600
+ const valueDisplay = document.getElementById('daysSliderValue');
601
+ const infoDisplay = document.getElementById('daysSliderInfo');
602
+
603
+ slider.addEventListener('input', (e) => {
604
+ daysToSum = parseInt(e.target.value);
605
+ valueDisplay.textContent = `${daysToSum} day${daysToSum !== 1 ? 's' : ''}`;
606
+ infoDisplay.textContent = daysToSum;
607
+ renderStats();
608
+ renderCharts();
609
+ });
610
+ }
611
+
612
+ function toggleProvider(provider) {
613
+ if (selectedProviders.has(provider)) {
614
+ selectedProviders.delete(provider);
615
+ } else {
616
+ selectedProviders.add(provider);
617
+ }
618
+ renderStats();
619
+ renderCharts();
620
+ }
621
+
622
+ function renderStats() {
623
+ const statsEl = document.getElementById('stats');
624
+ statsEl.innerHTML = '';
625
+
626
+ fullData.providers
627
+ .filter(p => p.success)
628
+ .forEach((provider, index) => {
629
+ // Filter data by days to sum
630
+ const filteredData = filterDataByDays(provider.data, daysToSum);
631
+
632
+ if (filteredData.length === 0) {
633
+ // If no data in range, show placeholder
634
+ const card = document.createElement('div');
635
+ card.className = 'stat-card';
636
+ card.style.opacity = '0.6';
637
+ card.innerHTML = `
638
+ <div class="eye-icon">${selectedProviders.has(provider.provider) ? '👁' : '❌'}</div>
639
+ <h3>${provider.provider}</h3>
640
+ <div class="stat-value">0</div>
641
+ <div class="stat-label">Total Tokens</div>
642
+ <div class="stat-sublabel">No data in selected range</div>
643
+ `;
644
+ statsEl.appendChild(card);
645
+ return;
646
+ }
647
+
648
+ const totalTokens = filteredData.reduce((sum, point) => {
649
+ return sum + Object.values(point.ys).reduce((a, b) => a + b, 0);
650
+ }, 0);
651
+
652
+ const models = new Set();
653
+ filteredData.forEach(point => {
654
+ Object.keys(point.ys).forEach(model => models.add(model));
655
+ });
656
+
657
+ const avgDaily = filteredData.length > 0 ? totalTokens / filteredData.length : 0;
658
+ const isVisible = selectedProviders.has(provider.provider);
659
+ const eyeIcon = isVisible ? '👁' : '❌';
660
+
661
+ // Calculate time period from filtered data
662
+ const startDate = filteredData[0].x.split(' ')[0];
663
+ const endDate = filteredData[filteredData.length - 1].x.split(' ')[0];
664
+ const days = filteredData.length;
665
+ const timePeriod = days === 1 ? startDate : `${startDate} to ${endDate} (${days} days)`;
666
+
667
+ const card = document.createElement('div');
668
+ card.className = 'stat-card';
669
+ card.onclick = (e) => {
670
+ if (!e.target.closest('.provider-link')) {
671
+ toggleProvider(provider.provider);
672
+ }
673
+ };
674
+ card.innerHTML = `
675
+ <div class="eye-icon">${eyeIcon}</div>
676
+ <h3>${provider.provider}</h3>
677
+ <div class="stat-value">${formatNumber(totalTokens)}</div>
678
+ <div class="stat-label">Total Tokens</div>
679
+ <div class="stat-sublabel">${formatNumber(avgDaily)}/day • ${models.size} models</div>
680
+ <div class="stat-sublabel" style="color: #999; font-size: 0.8em; margin-top: 4px;">Sum over: ${timePeriod}</div>
681
+ <a href="https://openrouter.ai/provider/${provider.provider}" target="_blank" class="provider-link" title="View on OpenRouter">
682
+ Link to provider on OpenRouter
683
+ </a>
684
+ `;
685
+ statsEl.appendChild(card);
686
+ });
687
+ }
688
+
689
+ function renderCharts() {
690
+ renderCombinedChart();
691
+ renderAvgDailyChart();
692
+ renderDeepDive();
693
+ renderModelDistChart();
694
+ }
695
+
696
+ function renderCombinedChart() {
697
+ const container = document.getElementById('combinedChart');
698
+ container.innerHTML = '';
699
+
700
+ const providers = fullData.providers
701
+ .filter(p => p.success && selectedProviders.has(p.provider));
702
+
703
+ if (providers.length === 0) {
704
+ container.innerHTML = '<p style="text-align: center; color: #999; padding: 40px;">Select providers above to see trends</p>';
705
+ return;
706
+ }
707
+
708
+ // Get time-filtered data
709
+ const allDates = [];
710
+ const providerData = {};
711
+
712
+ providers.forEach(provider => {
713
+ // First filter by days to sum
714
+ let data = filterDataByDays(provider.data, daysToSum);
715
+ // Then apply time range filter for display
716
+ if (currentTimeRange !== 'all') {
717
+ data = data.slice(-currentTimeRange);
718
+ }
719
+
720
+ providerData[provider.provider] = {};
721
+ data.forEach(point => {
722
+ const date = point.x;
723
+ const total = Object.values(point.ys).reduce((a, b) => a + b, 0);
724
+ providerData[provider.provider][date] = total;
725
+ if (!allDates.includes(date)) {
726
+ allDates.push(date);
727
+ }
728
+ });
729
+ });
730
+
731
+ allDates.sort();
732
+
733
+ // Find max value for scaling
734
+ const allValues = [];
735
+ providers.forEach(p => {
736
+ Object.values(providerData[p.provider]).forEach(v => allValues.push(v));
737
+ });
738
+ const maxValue = Math.max(...allValues);
739
+ const minValue = Math.min(...allValues);
740
+
741
+ // Create color map for consistent color assignment
742
+ const providerColorMap = {};
743
+ providers.forEach((provider, index) => {
744
+ providerColorMap[provider.provider] = COLORS[index % COLORS.length];
745
+ });
746
+
747
+ // Create container with tooltip
748
+ const chartContainer = document.createElement('div');
749
+ chartContainer.style.position = 'relative';
750
+ chartContainer.style.width = '100%';
751
+ chartContainer.style.height = '100%';
752
+
753
+ // Create SVG
754
+ const svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
755
+ svg.setAttribute('width', '100%');
756
+ svg.setAttribute('height', '100%');
757
+ svg.setAttribute('viewBox', '0 0 1000 400');
758
+ svg.style.background = '#fafafa';
759
+ svg.style.cursor = 'crosshair';
760
+
761
+ // Draw grid lines and Y-axis labels
762
+ for (let i = 0; i <= 5; i++) {
763
+ const y = 50 + (i * 60);
764
+ const line = document.createElementNS('http://www.w3.org/2000/svg', 'line');
765
+ line.setAttribute('x1', '80');
766
+ line.setAttribute('y1', y);
767
+ line.setAttribute('x2', '980');
768
+ line.setAttribute('y2', y);
769
+ line.setAttribute('stroke', '#e0e0e0');
770
+ line.setAttribute('stroke-width', '1');
771
+ svg.appendChild(line);
772
+
773
+ // Y-axis labels
774
+ const value = maxValue - (i * (maxValue - minValue) / 5);
775
+ const text = document.createElementNS('http://www.w3.org/2000/svg', 'text');
776
+ text.setAttribute('x', '70');
777
+ text.setAttribute('y', y + 5);
778
+ text.setAttribute('text-anchor', 'end');
779
+ text.setAttribute('font-size', '12');
780
+ text.setAttribute('fill', '#666');
781
+ text.textContent = formatNumber(value);
782
+ svg.appendChild(text);
783
+ }
784
+
785
+ // Add X-axis (date) labels
786
+ const numLabels = Math.min(8, allDates.length);
787
+ for (let i = 0; i < numLabels; i++) {
788
+ const dateIndex = Math.floor((i / (numLabels - 1)) * (allDates.length - 1));
789
+ const date = allDates[dateIndex];
790
+ const x = 80 + (dateIndex / (allDates.length - 1)) * 900;
791
+
792
+ const text = document.createElementNS('http://www.w3.org/2000/svg', 'text');
793
+ text.setAttribute('x', x);
794
+ text.setAttribute('y', '370');
795
+ text.setAttribute('text-anchor', 'middle');
796
+ text.setAttribute('font-size', '11');
797
+ text.setAttribute('fill', '#666');
798
+ text.textContent = date.split(' ')[0].substring(5); // Show MM-DD
799
+ svg.appendChild(text);
800
+ }
801
+
802
+ // Draw lines for each provider
803
+ providers.forEach((provider) => {
804
+ const color = providerColorMap[provider.provider];
805
+ const points = allDates.map((date, i) => {
806
+ const value = providerData[provider.provider][date] || 0;
807
+ const x = 80 + (i / (allDates.length - 1)) * 900;
808
+ const y = 50 + (1 - (value - minValue) / (maxValue - minValue)) * 300;
809
+ return `${x},${y}`;
810
+ }).join(' ');
811
+
812
+ const polyline = document.createElementNS('http://www.w3.org/2000/svg', 'polyline');
813
+ polyline.setAttribute('points', points);
814
+ polyline.setAttribute('fill', 'none');
815
+ polyline.setAttribute('stroke', color);
816
+ polyline.setAttribute('stroke-width', '3');
817
+ polyline.style.transition = 'all 0.3s ease';
818
+ svg.appendChild(polyline);
819
+ });
820
+
821
+ // Create external legend
822
+ const legend = document.createElement('div');
823
+ legend.style.display = 'flex';
824
+ legend.style.flexWrap = 'wrap';
825
+ legend.style.gap = '16px';
826
+ legend.style.marginTop = '20px';
827
+ legend.style.paddingTop = '16px';
828
+ legend.style.borderTop = '1px solid #e0e0e0';
829
+
830
+ providers.forEach((provider) => {
831
+ const color = providerColorMap[provider.provider];
832
+ const item = document.createElement('div');
833
+ item.style.display = 'flex';
834
+ item.style.alignItems = 'center';
835
+ item.style.gap = '8px';
836
+ item.innerHTML = `
837
+ <span style="display: inline-block; width: 20px; height: 3px; background: ${color}; border-radius: 2px;"></span>
838
+ <span style="font-size: 0.9em; color: #333;">${provider.provider}</span>
839
+ `;
840
+ legend.appendChild(item);
841
+ });
842
+
843
+ // Create tooltip
844
+ const tooltip = document.createElement('div');
845
+ tooltip.className = 'chart-tooltip';
846
+ tooltip.style.display = 'none';
847
+ chartContainer.appendChild(tooltip);
848
+
849
+ // Add hover interaction
850
+ svg.addEventListener('mousemove', (e) => {
851
+ const svgRect = svg.getBoundingClientRect();
852
+ const mouseX = e.clientX - svgRect.left;
853
+ const relativeX = (mouseX / svgRect.width) * 1000;
854
+
855
+ // Find closest date point
856
+ if (relativeX >= 80 && relativeX <= 980) {
857
+ const dataX = (relativeX - 80) / 900;
858
+ const dateIndex = Math.round(dataX * (allDates.length - 1));
859
+
860
+ if (dateIndex >= 0 && dateIndex < allDates.length) {
861
+ const date = allDates[dateIndex];
862
+
863
+ // Build tooltip content
864
+ let tooltipHTML = `<div class="chart-tooltip-date">${date.split(' ')[0]}</div>`;
865
+
866
+ providers
867
+ .sort((a, b) => {
868
+ const valA = providerData[a.provider][date] || 0;
869
+ const valB = providerData[b.provider][date] || 0;
870
+ return valB - valA;
871
+ })
872
+ .forEach((provider) => {
873
+ const value = providerData[provider.provider][date] || 0;
874
+ const color = providerColorMap[provider.provider];
875
+ tooltipHTML += `
876
+ <div class="chart-tooltip-item">
877
+ <span>
878
+ <span class="chart-tooltip-color" style="background: ${color};"></span>
879
+ ${provider.provider}
880
+ </span>
881
+ <strong>${formatNumber(value)}</strong>
882
+ </div>
883
+ `;
884
+ });
885
+
886
+ tooltip.innerHTML = tooltipHTML;
887
+ tooltip.style.display = 'block';
888
+ tooltip.style.left = `${e.clientX - svgRect.left + 15}px`;
889
+ tooltip.style.top = `${e.clientY - svgRect.top - 10}px`;
890
+
891
+ // Draw vertical line at hover position
892
+ let hoverLine = svg.querySelector('.hover-line');
893
+ if (!hoverLine) {
894
+ hoverLine = document.createElementNS('http://www.w3.org/2000/svg', 'line');
895
+ hoverLine.classList.add('hover-line');
896
+ hoverLine.setAttribute('stroke', '#999');
897
+ hoverLine.setAttribute('stroke-width', '1');
898
+ hoverLine.setAttribute('stroke-dasharray', '4,4');
899
+ svg.appendChild(hoverLine);
900
+ }
901
+ const lineX = 80 + (dateIndex / (allDates.length - 1)) * 900;
902
+ hoverLine.setAttribute('x1', lineX);
903
+ hoverLine.setAttribute('y1', '50');
904
+ hoverLine.setAttribute('x2', lineX);
905
+ hoverLine.setAttribute('y2', '350');
906
+ hoverLine.style.display = 'block';
907
+ }
908
+ }
909
+ });
910
+
911
+ svg.addEventListener('mouseleave', () => {
912
+ tooltip.style.display = 'none';
913
+ const hoverLine = svg.querySelector('.hover-line');
914
+ if (hoverLine) {
915
+ hoverLine.style.display = 'none';
916
+ }
917
+ });
918
+
919
+ chartContainer.appendChild(svg);
920
+ chartContainer.appendChild(legend);
921
+ container.appendChild(chartContainer);
922
+ }
923
+
924
+ function renderAvgDailyChart() {
925
+ const container = document.getElementById('avgDailyChart');
926
+ container.innerHTML = '';
927
+
928
+ const data = fullData.providers
929
+ .filter(p => p.success && selectedProviders.has(p.provider))
930
+ .map(p => {
931
+ const filteredData = filterDataByDays(p.data, daysToSum);
932
+ if (filteredData.length === 0) {
933
+ return {
934
+ provider: p.provider,
935
+ avgDaily: 0
936
+ };
937
+ }
938
+ const total = filteredData.reduce((sum, point) => {
939
+ return sum + Object.values(point.ys).reduce((a, b) => a + b, 0);
940
+ }, 0);
941
+ return {
942
+ provider: p.provider,
943
+ avgDaily: total / filteredData.length
944
+ };
945
+ })
946
+ .filter(d => d.avgDaily > 0) // Only show providers with data
947
+ .sort((a, b) => b.avgDaily - a.avgDaily);
948
+
949
+ const maxValue = Math.max(...data.map(d => d.avgDaily));
950
+
951
+ data.forEach((item, index) => {
952
+ const row = document.createElement('div');
953
+ row.className = 'bar-row';
954
+
955
+ const percent = (item.avgDaily / maxValue) * 100;
956
+ const color = COLORS[index % COLORS.length];
957
+
958
+ row.innerHTML = `
959
+ <div class="bar-label">${item.provider}</div>
960
+ <div class="bar-container">
961
+ <div class="bar-fill" style="width: ${percent}%; background: ${color};">
962
+ ${formatNumber(item.avgDaily)}/day
963
+ </div>
964
+ </div>
965
+ `;
966
+
967
+ container.appendChild(row);
968
+ });
969
+ }
970
+
971
+ function setTimeRange(range) {
972
+ currentTimeRange = range;
973
+
974
+ // Update button styles
975
+ document.querySelectorAll('.controls button').forEach(btn => {
976
+ btn.classList.remove('active');
977
+ });
978
+
979
+ if (range === 'all') {
980
+ document.getElementById('btn-all').classList.add('active');
981
+ } else if (range === 30) {
982
+ document.getElementById('btn-30').classList.add('active');
983
+ } else if (range === 7) {
984
+ document.getElementById('btn-7').classList.add('active');
985
+ }
986
+
987
+ renderCombinedChart();
988
+ }
989
+
990
+ let allModelData = [];
991
+ let currentSearchQuery = '';
992
+ let deepDiveView = 'models-by-provider';
993
+ let selectedProvider = null;
994
+ let selectedModel = null;
995
+
996
+ function setDeepDiveView(view) {
997
+ deepDiveView = view;
998
+
999
+ // Update button styles
1000
+ document.querySelectorAll('.view-selector button').forEach(btn => {
1001
+ btn.classList.remove('active');
1002
+ });
1003
+
1004
+ if (view === 'models-by-provider') {
1005
+ document.getElementById('btn-models-by-provider').classList.add('active');
1006
+ } else {
1007
+ document.getElementById('btn-providers-by-model').classList.add('active');
1008
+ }
1009
+
1010
+ renderDeepDive();
1011
+ }
1012
+
1013
+ function renderDeepDive() {
1014
+ const selectorEl = document.getElementById('deepDiveSelector');
1015
+ const chartEl = document.getElementById('deepDiveChart');
1016
+
1017
+ // Build data structures
1018
+ const providerModels = {};
1019
+ const modelProviders = {};
1020
+
1021
+ fullData.providers
1022
+ .filter(p => p.success)
1023
+ .forEach(provider => {
1024
+ providerModels[provider.provider] = {};
1025
+ const filteredData = filterDataByDays(provider.data, daysToSum);
1026
+ filteredData.forEach(point => {
1027
+ Object.entries(point.ys).forEach(([model, tokens]) => {
1028
+ if (model === 'Others') return;
1029
+
1030
+ if (!providerModels[provider.provider][model]) {
1031
+ providerModels[provider.provider][model] = 0;
1032
+ }
1033
+ providerModels[provider.provider][model] += tokens;
1034
+
1035
+ if (!modelProviders[model]) {
1036
+ modelProviders[model] = {};
1037
+ }
1038
+ if (!modelProviders[model][provider.provider]) {
1039
+ modelProviders[model][provider.provider] = 0;
1040
+ }
1041
+ modelProviders[model][provider.provider] += tokens;
1042
+ });
1043
+ });
1044
+ });
1045
+
1046
+ if (deepDiveView === 'models-by-provider') {
1047
+ // Show dropdown to select provider
1048
+ const providers = Object.keys(providerModels).sort();
1049
+ if (!selectedProvider || !providerModels[selectedProvider]) {
1050
+ selectedProvider = providers[0];
1051
+ }
1052
+
1053
+ selectorEl.innerHTML = `
1054
+ <label style="display: block; margin-bottom: 8px; font-weight: 600; color: #333;">Select Provider:</label>
1055
+ <select id="providerSelect">
1056
+ ${providers.map(p => `<option value="${p}" ${p === selectedProvider ? 'selected' : ''}>${p}</option>`).join('')}
1057
+ </select>
1058
+ `;
1059
+
1060
+ document.getElementById('providerSelect').addEventListener('change', (e) => {
1061
+ selectedProvider = e.target.value;
1062
+ renderDeepDiveChart(providerModels, modelProviders);
1063
+ });
1064
+
1065
+ renderDeepDiveChart(providerModels, modelProviders);
1066
+
1067
+ } else {
1068
+ // Show dropdown to select model
1069
+ const models = Object.keys(modelProviders).sort();
1070
+
1071
+ if (!selectedModel || !modelProviders[selectedModel]) {
1072
+ selectedModel = models[0];
1073
+ }
1074
+
1075
+ selectorEl.innerHTML = `
1076
+ <label style="display: block; margin-bottom: 8px; font-weight: 600; color: #333;">Select Model:</label>
1077
+ <select id="modelSelect">
1078
+ ${models.map(m => `<option value="${m}" ${m === selectedModel ? 'selected' : ''}>${m}</option>`).join('')}
1079
+ </select>
1080
+ `;
1081
+
1082
+ document.getElementById('modelSelect').addEventListener('change', (e) => {
1083
+ selectedModel = e.target.value;
1084
+ renderDeepDiveChart(providerModels, modelProviders);
1085
+ });
1086
+
1087
+ renderDeepDiveChart(providerModels, modelProviders);
1088
+ }
1089
+ }
1090
+
1091
+ function renderDeepDiveChart(providerModels, modelProviders) {
1092
+ const chartEl = document.getElementById('deepDiveChart');
1093
+ chartEl.innerHTML = '';
1094
+
1095
+ // Calculate time period from filtered date range
1096
+ const today = new Date();
1097
+ const cutoffDate = new Date(today);
1098
+ cutoffDate.setDate(cutoffDate.getDate() - daysToSum);
1099
+ const startDateStr = cutoffDate.toISOString().split('T')[0];
1100
+ const endDateStr = today.toISOString().split('T')[0];
1101
+ const timePeriod = `${startDateStr} to ${endDateStr} (${daysToSum} days)`;
1102
+
1103
+ if (deepDiveView === 'models-by-provider' && selectedProvider) {
1104
+ const models = providerModels[selectedProvider];
1105
+ const sortedModels = Object.entries(models)
1106
+ .sort((a, b) => b[1] - a[1])
1107
+ .slice(0, 20); // Show top 20 models
1108
+
1109
+ const maxTokens = sortedModels[0] ? sortedModels[0][1] : 1;
1110
+
1111
+ // Add time period info header
1112
+ if (timePeriod) {
1113
+ const infoDiv = document.createElement('div');
1114
+ infoDiv.className = 'time-span-info';
1115
+ infoDiv.style.marginBottom = '16px';
1116
+ infoDiv.innerHTML = `<strong>Time Period:</strong> ${timePeriod}`;
1117
+ chartEl.appendChild(infoDiv);
1118
+ }
1119
+
1120
+ sortedModels.forEach(([model, tokens], index) => {
1121
+ const percent = (tokens / maxTokens) * 100;
1122
+ const providerIndex = fullData.providers.findIndex(p => p.provider === selectedProvider);
1123
+ const color = COLORS[providerIndex % COLORS.length];
1124
+
1125
+ const row = document.createElement('div');
1126
+ row.className = 'bar-row';
1127
+ row.innerHTML = `
1128
+ <div class="bar-label" style="min-width: 200px; font-size: 0.9em;">${model}</div>
1129
+ <div class="bar-container">
1130
+ <div class="bar-fill" style="width: ${percent}%; background: ${color};">
1131
+ ${formatNumber(tokens)}
1132
+ </div>
1133
+ </div>
1134
+ `;
1135
+ chartEl.appendChild(row);
1136
+ });
1137
+
1138
+ if (sortedModels.length === 0) {
1139
+ chartEl.innerHTML = '<p style="text-align: center; color: #999; padding: 40px;">No models found for this provider</p>';
1140
+ }
1141
+
1142
+ } else if (deepDiveView === 'providers-by-model' && selectedModel) {
1143
+ const providers = modelProviders[selectedModel];
1144
+ const sortedProviders = Object.entries(providers)
1145
+ .sort((a, b) => b[1] - a[1]);
1146
+
1147
+ const maxTokens = sortedProviders[0] ? sortedProviders[0][1] : 1;
1148
+
1149
+ // Add time period info header
1150
+ if (timePeriod) {
1151
+ const infoDiv = document.createElement('div');
1152
+ infoDiv.className = 'time-span-info';
1153
+ infoDiv.style.marginBottom = '16px';
1154
+ infoDiv.innerHTML = `<strong>Time Period:</strong> ${timePeriod}`;
1155
+ chartEl.appendChild(infoDiv);
1156
+ }
1157
+
1158
+ sortedProviders.forEach(([provider, tokens], index) => {
1159
+ const percent = (tokens / maxTokens) * 100;
1160
+ const providerIndex = fullData.providers.findIndex(p => p.provider === provider);
1161
+ const color = COLORS[providerIndex % COLORS.length];
1162
+
1163
+ const row = document.createElement('div');
1164
+ row.className = 'bar-row';
1165
+ row.innerHTML = `
1166
+ <div class="bar-label">${provider}</div>
1167
+ <div class="bar-container">
1168
+ <div class="bar-fill" style="width: ${percent}%; background: ${color};">
1169
+ ${formatNumber(tokens)}
1170
+ </div>
1171
+ </div>
1172
+ `;
1173
+ chartEl.appendChild(row);
1174
+ });
1175
+
1176
+ if (sortedProviders.length === 0) {
1177
+ chartEl.innerHTML = '<p style="text-align: center; color: #999; padding: 40px;">No providers found for this model</p>';
1178
+ }
1179
+ }
1180
+ }
1181
+
1182
+ function renderModelDistChart(searchQuery = '') {
1183
+ const container = document.getElementById('modelDistChart');
1184
+ container.innerHTML = '';
1185
+
1186
+ // Update time span info
1187
+ const timeSpanEl = document.getElementById('timeSpanInfo');
1188
+ const today = new Date();
1189
+ const cutoffDate = new Date(today);
1190
+ cutoffDate.setDate(cutoffDate.getDate() - daysToSum);
1191
+ const startDateStr = cutoffDate.toISOString().split('T')[0];
1192
+ const endDateStr = today.toISOString().split('T')[0];
1193
+ timeSpanEl.innerHTML = `<strong>Time Period:</strong> ${startDateStr} to ${endDateStr} (last ${daysToSum} days of cumulative data)`;
1194
+
1195
+ // Build model -> provider -> tokens mapping
1196
+ const modelData = {};
1197
+
1198
+ fullData.providers
1199
+ .filter(p => p.success)
1200
+ .forEach(provider => {
1201
+ const filteredData = filterDataByDays(provider.data, daysToSum);
1202
+ filteredData.forEach(point => {
1203
+ Object.entries(point.ys).forEach(([model, tokens]) => {
1204
+ if (model === 'Others') return; // Skip "Others" category
1205
+
1206
+ if (!modelData[model]) {
1207
+ modelData[model] = {};
1208
+ }
1209
+ if (!modelData[model][provider.provider]) {
1210
+ modelData[model][provider.provider] = 0;
1211
+ }
1212
+ modelData[model][provider.provider] += tokens;
1213
+ });
1214
+ });
1215
+ });
1216
+
1217
+ // Convert to array and sort by total tokens
1218
+ const modelArray = Object.entries(modelData).map(([model, providers]) => {
1219
+ const total = Object.values(providers).reduce((a, b) => a + b, 0);
1220
+ return { model, providers, total };
1221
+ }).sort((a, b) => b.total - a.total);
1222
+
1223
+ // Store for search
1224
+ allModelData = modelArray;
1225
+
1226
+ // Filter by search query
1227
+ let displayModels = modelArray;
1228
+ if (searchQuery) {
1229
+ displayModels = modelArray.filter(m =>
1230
+ m.model.toLowerCase().includes(searchQuery.toLowerCase())
1231
+ );
1232
+ }
1233
+
1234
+ // Show top 20 or search results
1235
+ const topModels = searchQuery ? displayModels : displayModels.slice(0, 20);
1236
+
1237
+ topModels.forEach(({ model, providers, total }) => {
1238
+ const section = document.createElement('div');
1239
+ section.style.marginBottom = '30px';
1240
+ section.style.borderBottom = '1px solid #e0e0e0';
1241
+ section.style.paddingBottom = '20px';
1242
+
1243
+ const header = document.createElement('div');
1244
+ header.style.marginBottom = '12px';
1245
+ // Use the filtered date range
1246
+ const today = new Date();
1247
+ const cutoffDate = new Date(today);
1248
+ cutoffDate.setDate(cutoffDate.getDate() - daysToSum);
1249
+ const startDateStr = cutoffDate.toISOString().split('T')[0];
1250
+ const endDateStr = today.toISOString().split('T')[0];
1251
+ const timePeriodText = `${startDateStr} to ${endDateStr} (${daysToSum} days)`;
1252
+ header.innerHTML = `
1253
+ <div style="font-weight: 600; color: #333; font-size: 1.05em;">${model}</div>
1254
+ <div style="color: #666; font-size: 0.9em; margin-top: 4px;">Total: ${formatNumber(total)} tokens across ${Object.keys(providers).length} provider(s) (sum over ${timePeriodText})</div>
1255
+ `;
1256
+ section.appendChild(header);
1257
+
1258
+ // Sort providers by token count for this model
1259
+ const providerArray = Object.entries(providers)
1260
+ .sort((a, b) => b[1] - a[1]);
1261
+
1262
+ const maxTokens = providerArray[0][1];
1263
+
1264
+ providerArray.forEach(([providerName, tokens], index) => {
1265
+ const percent = (tokens / maxTokens) * 100;
1266
+ const providerIndex = fullData.providers.findIndex(p => p.provider === providerName);
1267
+ const color = COLORS[providerIndex % COLORS.length];
1268
+
1269
+ const row = document.createElement('div');
1270
+ row.className = 'bar-row';
1271
+ row.style.marginBottom = '10px';
1272
+
1273
+ row.innerHTML = `
1274
+ <div class="bar-label" style="min-width: 120px;">${providerName}</div>
1275
+ <div class="bar-container">
1276
+ <div class="bar-fill" style="width: ${percent}%; background: ${color};">
1277
+ ${formatNumber(tokens)} (${((tokens / total) * 100).toFixed(1)}%)
1278
+ </div>
1279
+ </div>
1280
+ `;
1281
+
1282
+ section.appendChild(row);
1283
+ });
1284
+
1285
+ container.appendChild(section);
1286
+ });
1287
+
1288
+ if (topModels.length === 0) {
1289
+ container.innerHTML = '<p style="text-align: center; color: #999; padding: 40px;">No model data available</p>';
1290
+ }
1291
+ }
1292
+
1293
+ // Search functionality
1294
+ function setupModelSearch() {
1295
+ const searchInput = document.getElementById('modelSearchInput');
1296
+ const searchResults = document.getElementById('modelSearchResults');
1297
+
1298
+ searchInput.addEventListener('input', (e) => {
1299
+ const query = e.target.value.trim();
1300
+
1301
+ if (query.length < 2) {
1302
+ searchResults.style.display = 'none';
1303
+ renderModelDistChart('');
1304
+ return;
1305
+ }
1306
+
1307
+ // Show autocomplete suggestions
1308
+ const matches = allModelData
1309
+ .filter(m => m.model.toLowerCase().includes(query.toLowerCase()))
1310
+ .slice(0, 10);
1311
+
1312
+ if (matches.length > 0) {
1313
+ searchResults.innerHTML = matches.map(m =>
1314
+ `<div class="model-search-item" data-model="${m.model}">
1315
+ <strong>${m.model}</strong><br>
1316
+ <small style="color: #666;">${formatNumber(m.total)} tokens</small>
1317
+ </div>`
1318
+ ).join('');
1319
+ searchResults.style.display = 'block';
1320
+ } else {
1321
+ searchResults.innerHTML = '<div class="model-search-item"><em>No models found</em></div>';
1322
+ searchResults.style.display = 'block';
1323
+ }
1324
+
1325
+ // Update chart with search query
1326
+ renderModelDistChart(query);
1327
+ });
1328
+
1329
+ // Handle clicking on search results
1330
+ searchResults.addEventListener('click', (e) => {
1331
+ const item = e.target.closest('.model-search-item');
1332
+ if (item && item.dataset.model) {
1333
+ searchInput.value = item.dataset.model;
1334
+ searchResults.style.display = 'none';
1335
+ renderModelDistChart(item.dataset.model);
1336
+ }
1337
+ });
1338
+
1339
+ // Close search results when clicking outside
1340
+ document.addEventListener('click', (e) => {
1341
+ if (!searchInput.contains(e.target) && !searchResults.contains(e.target)) {
1342
+ searchResults.style.display = 'none';
1343
+ }
1344
+ });
1345
+ }
1346
+
1347
+ // Load data on page load
1348
+ loadData().then(() => {
1349
+ setupModelSearch();
1350
+ });
1351
+ </script>
1352
+ </body>
1353
+ </html>