bridgerapi 1.9.0 → 1.9.1

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/dist/cli.js +1 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -131,7 +131,7 @@ function extractModelIds(text) {
131
131
  const seen = /* @__PURE__ */ new Set();
132
132
  const re = /\b([a-z][a-z0-9]*(?:[.\-][a-z0-9]+)+)\b/g;
133
133
  for (const [, id] of text.matchAll(re)) {
134
- if (id.length >= 5 && !SKIP_TOKENS.has(id)) seen.add(id);
134
+ if (id.length >= 5 && /\d/.test(id) && !SKIP_TOKENS.has(id)) seen.add(id);
135
135
  }
136
136
  return [...seen];
137
137
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bridgerapi",
3
- "version": "1.9.0",
3
+ "version": "1.9.1",
4
4
  "description": "Turn any AI CLI (Claude Code, Gemini, Codex, GitHub Copilot) into an OpenAI-compatible API — no API keys needed",
5
5
  "keywords": [
6
6
  "claude",