pi-multikey 1.15.0 → 1.17.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/presets.ts +51 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-multikey",
3
- "version": "1.15.0",
3
+ "version": "1.17.0",
4
4
  "description": "One pi provider backed by many API keys: automatic 429 rotation, per-request key leases for concurrent subagents, and a /multikey management TUI",
5
5
  "keywords": [
6
6
  "pi-package",
package/presets.ts CHANGED
@@ -264,7 +264,7 @@ export const PRESETS: Preset[] = [
264
264
  id: "cline-free",
265
265
  name: "Cline Free",
266
266
  description:
267
- "api.cline.bot — Cline account free tier: DeepSeek V4.1 Flash, Laguna S 2.1, GLM 5.3, Solar Pro 4, Muse Spark 1.3, Union Alpha (daily per-model quota, lineup rotates)",
267
+ "api.cline.bot — Cline account free tier: DeepSeek V4.1 Flash, Laguna S 2.1, GLM 5.3, Solar Pro 4, Muse Spark 1.3, Space Bunny Alpha, MiMo V2.6 Flash, Gemini 3.8 Flash (daily per-model quota, lineup rotates)",
268
268
  defaultPoolId: "cline",
269
269
  baseUrl: "https://api.cline.bot/api/v1",
270
270
  api: "openai-completions",
@@ -350,15 +350,58 @@ export const PRESETS: Preset[] = [
350
350
  thinkingLevelMap: levels({ minimal: "minimal", low: "low", medium: "medium", high: "high", xhigh: "xhigh", max: "max" }),
351
351
  },
352
352
  {
353
- // Stealth promo model; free at its raw id (no cline-free/ prefix in the feed).
354
- // Not in any catalog (stealth) — sizes/reasoning copied from the live pool,
355
- // unverified.
356
- id: "stealth/union-alpha",
357
- name: "Union Alpha",
353
+ // stealth/union-alpha retired from the Cline lineup (removed 2026-09-25 by the
354
+ // pool owner; superseded by the two entries below).
355
+ // Stealth promo model, free at its raw feed id (stealth/ prefix, no
356
+ // cline-free/ namespace). Not in any catalog (stealth) — sizes copied
357
+ // from the working live pool (2026-09-25), unverified. Always-on
358
+ // reasoning, no effort tiers.
359
+ id: "stealth/space-bunny-alpha",
360
+ name: "stealth/space-bunny-alpha",
358
361
  reasoning: true,
359
362
  input: ["text"],
360
- contextWindow: 262_000,
361
- maxTokens: 16_384,
363
+ cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
364
+ contextWindow: 1_000_000,
365
+ maxTokens: 32_768,
366
+ },
367
+ {
368
+ // Feed id: cline-free/mimo-v2.6-flash (raw xiaomi/mimo-v2.6-flash is
369
+ // usage-billed — same cline-free/ namespace rule as deepseek above).
370
+ // MiMo V2.6 Flash on the Cline free tier; working in the live pool
371
+ // 2026-09-25. Sizes from the live pool. Always-on reasoning, no effort
372
+ // tiers; vision input.
373
+ id: "cline-free/mimo-v2.6-flash",
374
+ name: "xiaomi/mimo-v2.6-flash",
375
+ reasoning: true,
376
+ input: ["text", "image"],
377
+ cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
378
+ contextWindow: 1_048_576,
379
+ maxTokens: 128_000,
380
+ },
381
+ {
382
+ // Feed id: cline-free/gemini-3.8-flash — top of the recommended-models
383
+ // `free` bucket ("Google's most intelligent Flash model", verified live
384
+ // 2026-09-25). The raw google/ id is usage-billed: it answers 402
385
+ // insufficient_credits on a zero-balance account while the cline-free/
386
+ // id rides the daily per-model quota ($0; the gateway `cost` metadata
387
+ // on free-route responses is market price, not billing).
388
+ // Catalog (cline google provider): ctx 1048576, out 65536; upstream
389
+ // inputs text/image/video/audio/pdf (pi tracks text + image).
390
+ // Thinking is ALWAYS ON on this route — ~300 reasoning_tokens even
391
+ // with no reasoning param, and effort=none still thinks — so off is
392
+ // hidden (null). Verified live 2026-09-25 via reasoning:{effort}:
393
+ // low/medium/high accepted; low is distinct (zero reasoning tokens).
394
+ // minimal/xhigh/max are accepted but indistinguishable from the
395
+ // default depth → hidden.
396
+ id: "cline-free/gemini-3.8-flash",
397
+ name: "Gemini 3.8 Flash (Free)",
398
+ reasoning: true,
399
+ input: ["text", "image"],
400
+ cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
401
+ contextWindow: 1_048_576,
402
+ maxTokens: 65_536,
403
+ compat: { thinkingFormat: "openrouter" },
404
+ thinkingLevelMap: levels({ low: "low", medium: "medium", high: "high" }),
362
405
  },
363
406
  ],
364
407
  },