@wrongstack/core 0.281.0 → 0.281.3

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.
@@ -281,6 +281,7 @@ var FAMILY_BY_NPM = {
281
281
  "@ai-sdk/gateway": "openai-compatible",
282
282
  "@aihubmix/ai-sdk-provider": "openai-compatible",
283
283
  "venice-ai-sdk-provider": "openai-compatible",
284
+ "@ai-sdk/deepseek": "openai-compatible",
284
285
  "@ai-sdk/google": "google"
285
286
  };
286
287
  function classifyFamily(npm) {
@@ -380,7 +381,9 @@ var DefaultModelsRegistry = class {
380
381
  }
381
382
  if (overlayAvailable) {
382
383
  console.warn(
383
- `ModelsRegistry: models.dev unavailable (${toErrorMessage(err)}); serving curated overlay only.`
384
+ `ModelsRegistry: models.dev unavailable (${toErrorMessage(
385
+ err
386
+ )}); serving curated overlay only.`
384
387
  );
385
388
  return {};
386
389
  }
@@ -457,11 +460,12 @@ var DefaultModelsRegistry = class {
457
460
  method: "GET",
458
461
  headers: { accept: "application/json" }
459
462
  });
460
- if (!res.ok) throw new FetchError({
461
- message: `HTTP ${res.status}`,
462
- status: res.status,
463
- context: { url: this.url, op: "refreshModels" }
464
- });
463
+ if (!res.ok)
464
+ throw new FetchError({
465
+ message: `HTTP ${res.status}`,
466
+ status: res.status,
467
+ context: { url: this.url, op: "refreshModels" }
468
+ });
465
469
  const json = await res.json();
466
470
  const envelope = {
467
471
  fetchedAt: (/* @__PURE__ */ new Date()).toISOString(),
@@ -1059,7 +1063,7 @@ var CODEX_MODELS = [
1059
1063
  {
1060
1064
  id: "gpt-5.3-codex-spark",
1061
1065
  name: "GPT-5.3 Codex Spark",
1062
- description: "Ultra-fast coding model."
1066
+ description: "Ultra-fast coding model (research preview)."
1063
1067
  }
1064
1068
  ];
1065
1069
  var BY_ID = new Map(CODEX_MODELS.map((m) => [m.id, m]));