unified-ai-router 3.5.8 → 3.5.10
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.
|
@@ -23,21 +23,17 @@ jobs:
|
|
|
23
23
|
uses: actions/checkout@v5
|
|
24
24
|
with:
|
|
25
25
|
fetch-depth: 0 # Not needed if lastUpdated is not enabled
|
|
26
|
-
# - uses: pnpm/action-setup@v3 # Uncomment this block if you're using pnpm
|
|
27
|
-
# with:
|
|
28
|
-
# version: 9 # Not needed if you've set "packageManager" in package.json
|
|
29
|
-
# - uses: oven-sh/setup-bun@v1 # Uncomment this if you're using Bun
|
|
30
26
|
- name: Setup Node
|
|
31
27
|
uses: actions/setup-node@v6
|
|
32
28
|
with:
|
|
33
29
|
node-version: 24
|
|
34
|
-
cache: npm
|
|
30
|
+
cache: npm
|
|
35
31
|
- name: Setup Pages
|
|
36
32
|
uses: actions/configure-pages@v4
|
|
37
33
|
- name: Install dependencies
|
|
38
|
-
run: npm
|
|
34
|
+
run: npm ci
|
|
39
35
|
- name: Build with VitePress
|
|
40
|
-
run: npm run docs:build
|
|
36
|
+
run: npm run docs:build
|
|
41
37
|
- name: Upload artifact
|
|
42
38
|
uses: actions/upload-pages-artifact@v3
|
|
43
39
|
with:
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { defineConfig } from "vitepress"
|
|
2
2
|
|
|
3
3
|
export default defineConfig({
|
|
4
|
-
base: "
|
|
4
|
+
base: "/Unified-AI-Router/",
|
|
5
5
|
server: {
|
|
6
6
|
host: true,
|
|
7
|
-
}
|
|
7
|
+
},
|
|
8
8
|
title: "Unified AI Router",
|
|
9
9
|
description: "OpenAI-compatible router with multi-provider fallback.",
|
|
10
10
|
head: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "unified-ai-router",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.10",
|
|
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",
|