unified-ai-router 3.4.8 → 3.5.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.
package/.env.example CHANGED
@@ -3,7 +3,6 @@ OPENROUTER_API_KEY=API_KEY
3
3
  ZAI_API_KEY=API_KEY
4
4
  GROK_API_KEY=API_KEY
5
5
  QROQ_API_KEY=API_KEY
6
- COHERE_API_KEY=API_KEY
7
6
  CEREBRAS_API_KEY=API_KEY
8
7
  LLM7_API_KEY=API_KEY
9
8
  PORT=3000
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unified-ai-router",
3
- "version": "3.4.8",
3
+ "version": "3.5.0",
4
4
  "description": "A unified interface for multiple LLM providers with automatic fallback. This project includes an OpenAI-compatible server and a deployable Telegram bot with a Mini App interface. It supports major providers like OpenAI, Google, Grok, and more, ensuring reliability and flexibility for your AI applications.",
5
5
  "license": "ISC",
6
6
  "author": "mlibre",
package/provider.js CHANGED
@@ -25,7 +25,8 @@ module.exports = [
25
25
  process.env.OPENROUTER_API_KEY_2,
26
26
  process.env.OPENROUTER_API_KEY_3,
27
27
  process.env.OPENROUTER_API_KEY_4,
28
- process.env.OPENROUTER_API_KEY_5
28
+ process.env.OPENROUTER_API_KEY_5,
29
+ process.env.OPENROUTER_API_KEY_6
29
30
  ],
30
31
  model: "qwen/qwen3-coder:free",
31
32
  apiUrl: "https://openrouter.ai/api/v1",
@@ -37,7 +38,8 @@ module.exports = [
37
38
  process.env.OPENROUTER_API_KEY_2,
38
39
  process.env.OPENROUTER_API_KEY_3,
39
40
  process.env.OPENROUTER_API_KEY_4,
40
- process.env.OPENROUTER_API_KEY_5
41
+ process.env.OPENROUTER_API_KEY_5,
42
+ process.env.OPENROUTER_API_KEY_6
41
43
  ],
42
44
  model: "z-ai/glm-4.5-air:free",
43
45
  apiUrl: "https://openrouter.ai/api/v1",
package/readme.md CHANGED
@@ -159,7 +159,7 @@ Ensure `provider.js` is configured with API keys in `.env` (as above). Push to G
159
159
  ```
160
160
 
161
161
  3. **Verify**:
162
- - Access `https://your-service.onrender.com/models` (e.g., [unified-ai-router.onrender.com/models](https://unified-ai-router.onrender.com/models)).
162
+ - Access `https://your-service.onrender.com/models`.
163
163
 
164
164
  See [Render docs](https://render.com/docs) for details.
165
165