adaptive-memory-multi-model-router 2.14.5 โ 2.14.7
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.
|
@@ -12,6 +12,8 @@ on:
|
|
|
12
12
|
jobs:
|
|
13
13
|
publish:
|
|
14
14
|
runs-on: ubuntu-latest
|
|
15
|
+
permissions:
|
|
16
|
+
contents: write
|
|
15
17
|
steps:
|
|
16
18
|
- uses: actions/checkout@v4
|
|
17
19
|
|
|
@@ -37,9 +39,9 @@ jobs:
|
|
|
37
39
|
|
|
38
40
|
- name: Add research insight
|
|
39
41
|
run: |
|
|
40
|
-
# Update the auto-publish log with latest finding
|
|
41
42
|
echo "## $(date -u +%Y-%m-%dT%H:%MZ)" >> research/PUBLISH_LOG.md
|
|
42
|
-
|
|
43
|
+
VER=$(node -p "require('./package.json').version")
|
|
44
|
+
echo "Published v$VER" >> research/PUBLISH_LOG.md
|
|
43
45
|
echo "" >> research/PUBLISH_LOG.md
|
|
44
46
|
|
|
45
47
|
- name: Build (best-effort)
|
|
@@ -57,5 +59,6 @@ jobs:
|
|
|
57
59
|
git config user.name "a3m-bot"
|
|
58
60
|
git config user.email "bot@a3m-router.dev"
|
|
59
61
|
git add .publish-tick package.json package-lock.json dist/
|
|
60
|
-
|
|
62
|
+
VER=$(node -p "require('./package.json').version")
|
|
63
|
+
git commit -m "chore: auto-publish v$VER" || true
|
|
61
64
|
git push
|
package/.publish-tick
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1780112002
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adaptive-memory-multi-model-router",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.7",
|
|
4
4
|
"shortName": "A3M Router",
|
|
5
5
|
"displayName": "A3M Router - Adaptive Memory Multi-Model Router",
|
|
6
6
|
"description": "๐ #1 LLM routing benchmark & Cheapest LLM router with memory ยท Open-source AI gateway with parallel multi-LLM execution across 47+ providers, ensemble voting, semantic cache, and budget enforcement",
|
package/research/PUBLISH_LOG.md
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
## 2026-05-30T03:
|
|
2
|
-
Published
|
|
1
|
+
## 2026-05-30T03:33Z
|
|
2
|
+
Published v2.14.6
|
|
3
3
|
|