trantor 0.15.0 → 0.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,329 @@
1
+ {
2
+ "_comment": "Native multi-LLM harness registry. Costs are USD per 1,000,000 tokens (in/out). Edit freely. Opus 4.8 reference: ~15/75 per 1M. Trust is execution-only — NONE of these are for orchestration or whole-project context. Pricing last verified from official provider pages 2026-06-01; run `scrooge-drift` to detect when model ids drift.",
3
+ "version": 1,
4
+ "providers": {
5
+ "deepseek": {
6
+ "env": [
7
+ "DEEPSEEK_API_KEY"
8
+ ],
9
+ "base_url": "https://api.deepseek.com/v1",
10
+ "openai_compatible": true
11
+ },
12
+ "kimi": {
13
+ "env": [
14
+ "MOONSHOT_API_KEY",
15
+ "KIMI_API_KEY"
16
+ ],
17
+ "base_url": "https://api.moonshot.ai/v1",
18
+ "openai_compatible": true
19
+ },
20
+ "zai": {
21
+ "env": [
22
+ "ZAI_API_KEY"
23
+ ],
24
+ "base_url": "https://api.z.ai/api/paas/v4",
25
+ "openai_compatible": true
26
+ },
27
+ "gemini": {
28
+ "env": [
29
+ "GOOGLE_API_KEY",
30
+ "GEMINI_API_KEY"
31
+ ],
32
+ "base_url": "https://generativelanguage.googleapis.com/v1beta/openai",
33
+ "openai_compatible": true
34
+ },
35
+ "openai": {
36
+ "env": [
37
+ "OPENAI_API_KEY"
38
+ ],
39
+ "base_url": "https://api.openai.com/v1",
40
+ "openai_compatible": true
41
+ },
42
+ "xai": {
43
+ "env": [
44
+ "XAI_API_KEY"
45
+ ],
46
+ "base_url": "https://api.x.ai/v1",
47
+ "openai_compatible": true
48
+ },
49
+ "openrouter": {
50
+ "env": [
51
+ "OPENROUTER_API_KEY"
52
+ ],
53
+ "base_url": "https://openrouter.ai/api/v1",
54
+ "openai_compatible": true,
55
+ "extra_headers": {
56
+ "HTTP-Referer": "https://claude-code.local",
57
+ "X-Title": "claude-code-llm-harness"
58
+ }
59
+ }
60
+ },
61
+ "models": {
62
+ "deepseek-v4-flash": {
63
+ "provider": "deepseek",
64
+ "cost_in": 0.14,
65
+ "cost_out": 0.28,
66
+ "context": 1000000,
67
+ "speed": "fast",
68
+ "trust": "execution",
69
+ "good_for": [
70
+ "code",
71
+ "verify",
72
+ "extract",
73
+ "draft",
74
+ "summarize",
75
+ "cheap"
76
+ ]
77
+ },
78
+ "deepseek-v4-pro": {
79
+ "provider": "deepseek",
80
+ "cost_in": 0.435,
81
+ "cost_out": 0.87,
82
+ "context": 1000000,
83
+ "speed": "slow",
84
+ "trust": "execution",
85
+ "good_for": [
86
+ "reason",
87
+ "verify",
88
+ "analyze",
89
+ "code"
90
+ ]
91
+ },
92
+ "kimi-k2.6": {
93
+ "provider": "kimi",
94
+ "cost_in": 0.95,
95
+ "cost_out": 4.0,
96
+ "context": 262144,
97
+ "speed": "medium",
98
+ "trust": "execution",
99
+ "good_for": [
100
+ "code",
101
+ "long-context",
102
+ "reason",
103
+ "verify"
104
+ ],
105
+ "force_temperature": 1
106
+ },
107
+ "glm-4.5-air": {
108
+ "provider": "zai",
109
+ "cost_in": 0.2,
110
+ "cost_out": 1.1,
111
+ "context": 131072,
112
+ "speed": "fast",
113
+ "trust": "execution",
114
+ "good_for": [
115
+ "summarize",
116
+ "extract",
117
+ "draft",
118
+ "cheap"
119
+ ]
120
+ },
121
+ "glm-4.7": {
122
+ "provider": "zai",
123
+ "cost_in": 0.6,
124
+ "cost_out": 2.2,
125
+ "context": 203000,
126
+ "speed": "medium",
127
+ "trust": "execution",
128
+ "good_for": [
129
+ "code",
130
+ "verify",
131
+ "reason"
132
+ ]
133
+ },
134
+ "glm-5": {
135
+ "provider": "zai",
136
+ "cost_in": 1.0,
137
+ "cost_out": 3.2,
138
+ "context": 203000,
139
+ "speed": "medium",
140
+ "trust": "execution",
141
+ "good_for": [
142
+ "code",
143
+ "reason",
144
+ "verify",
145
+ "analyze"
146
+ ]
147
+ },
148
+ "gemini-2.5-flash-lite": {
149
+ "provider": "gemini",
150
+ "cost_in": 0.1,
151
+ "cost_out": 0.4,
152
+ "context": 1048576,
153
+ "speed": "fast",
154
+ "trust": "execution",
155
+ "good_for": [
156
+ "cheap",
157
+ "extract",
158
+ "draft",
159
+ "summarize",
160
+ "vision"
161
+ ]
162
+ },
163
+ "gemini-2.5-flash": {
164
+ "provider": "gemini",
165
+ "cost_in": 0.3,
166
+ "cost_out": 2.5,
167
+ "context": 1048576,
168
+ "speed": "fast",
169
+ "trust": "execution",
170
+ "good_for": [
171
+ "summarize",
172
+ "extract",
173
+ "long-context",
174
+ "verify",
175
+ "vision"
176
+ ]
177
+ },
178
+ "gemini-3-flash-preview": {
179
+ "provider": "gemini",
180
+ "cost_in": 0.5,
181
+ "cost_out": 3.0,
182
+ "context": 1048576,
183
+ "speed": "fast",
184
+ "trust": "execution",
185
+ "good_for": [
186
+ "summarize",
187
+ "extract",
188
+ "long-context",
189
+ "vision",
190
+ "verify"
191
+ ]
192
+ },
193
+ "gpt-5-nano": {
194
+ "provider": "openai",
195
+ "cost_in": 0.05,
196
+ "cost_out": 0.4,
197
+ "context": 400000,
198
+ "speed": "slow",
199
+ "trust": "execution",
200
+ "good_for": [
201
+ "cheap",
202
+ "summarize",
203
+ "extract",
204
+ "draft",
205
+ "verify"
206
+ ],
207
+ "token_param": "max_completion_tokens",
208
+ "force_temperature": 1
209
+ },
210
+ "gpt-5-mini": {
211
+ "provider": "openai",
212
+ "cost_in": 0.25,
213
+ "cost_out": 2.0,
214
+ "context": 400000,
215
+ "speed": "fast",
216
+ "trust": "execution",
217
+ "good_for": [
218
+ "code",
219
+ "verify",
220
+ "reason",
221
+ "extract"
222
+ ],
223
+ "token_param": "max_completion_tokens",
224
+ "force_temperature": 1
225
+ },
226
+ "gpt-4.1-mini": {
227
+ "provider": "openai",
228
+ "cost_in": 0.4,
229
+ "cost_out": 1.6,
230
+ "context": 1047576,
231
+ "speed": "fast",
232
+ "trust": "execution",
233
+ "good_for": [
234
+ "code",
235
+ "extract",
236
+ "long-context"
237
+ ]
238
+ },
239
+ "grok-4.3": {
240
+ "provider": "xai",
241
+ "cost_in": 1.25,
242
+ "cost_out": 2.5,
243
+ "context": 1000000,
244
+ "speed": "medium",
245
+ "trust": "execution",
246
+ "good_for": [
247
+ "reason",
248
+ "verify",
249
+ "analyze"
250
+ ]
251
+ }
252
+ },
253
+ "aliases": {
254
+ "deepseek": "deepseek-v4-flash",
255
+ "deepseek-pro": "deepseek-v4-pro",
256
+ "reasoner": "deepseek-v4-pro",
257
+ "kimi": "kimi-k2.6",
258
+ "glm": "glm-4.7",
259
+ "glm5": "glm-5",
260
+ "gemini": "gemini-2.5-flash",
261
+ "flash": "gemini-3-flash-preview",
262
+ "lite": "gemini-2.5-flash-lite",
263
+ "cheap": "deepseek-v4-flash",
264
+ "nano": "gpt-5-nano",
265
+ "mini": "gpt-5-mini",
266
+ "grok": "grok-4.3"
267
+ },
268
+ "tasks": {
269
+ "code": [
270
+ "deepseek-v4-flash",
271
+ "deepseek-v4-pro",
272
+ "gpt-5-mini",
273
+ "glm-4.7",
274
+ "kimi-k2.6"
275
+ ],
276
+ "code-review": [
277
+ "deepseek-v4-flash",
278
+ "gpt-5-mini",
279
+ "glm-4.7",
280
+ "glm-5",
281
+ "kimi-k2.6"
282
+ ],
283
+ "verify": [
284
+ "deepseek-v4-flash",
285
+ "gpt-5-nano",
286
+ "gemini-2.5-flash",
287
+ "deepseek-v4-pro"
288
+ ],
289
+ "summarize": [
290
+ "gemini-2.5-flash-lite",
291
+ "glm-4.5-air",
292
+ "deepseek-v4-flash",
293
+ "gpt-5-nano"
294
+ ],
295
+ "extract": [
296
+ "gemini-2.5-flash-lite",
297
+ "deepseek-v4-flash",
298
+ "glm-4.5-air",
299
+ "gpt-5-nano"
300
+ ],
301
+ "draft": [
302
+ "deepseek-v4-flash",
303
+ "glm-4.5-air",
304
+ "gpt-5-nano"
305
+ ],
306
+ "reason": [
307
+ "deepseek-v4-pro",
308
+ "gpt-5-mini",
309
+ "grok-4.3",
310
+ "glm-5"
311
+ ],
312
+ "long-context": [
313
+ "gemini-2.5-flash",
314
+ "deepseek-v4-flash",
315
+ "kimi-k2.6"
316
+ ],
317
+ "cheap": [
318
+ "deepseek-v4-flash",
319
+ "gpt-5-nano",
320
+ "gemini-2.5-flash-lite",
321
+ "glm-4.5-air"
322
+ ],
323
+ "vision": [
324
+ "gemini-2.5-flash-lite",
325
+ "gemini-2.5-flash",
326
+ "gemini-3-flash-preview"
327
+ ]
328
+ }
329
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trantor",
3
- "version": "0.15.0",
3
+ "version": "0.16.0",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "trantor": "bin/cli.mjs"
@@ -24,7 +24,8 @@
24
24
  "configs/",
25
25
  ".claude-plugin/",
26
26
  "README.md",
27
- "LICENSE"
27
+ "LICENSE",
28
+ "engine/"
28
29
  ],
29
30
  "repository": {
30
31
  "type": "git",