pi-multikey 1.15.0 → 1.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/presets.ts +26 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-multikey",
3
- "version": "1.15.0",
3
+ "version": "1.16.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 (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,33 @@ 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,
362
380
  },
363
381
  ],
364
382
  },