adaptive-memory-multi-model-router 2.15.3 → 2.16.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/CHANGELOG.md +7 -1
- package/README_ja.md +2 -2
- package/README_zh.md +1 -1
- package/apps/cost-calculator/README.md +72 -0
- package/apps/cost-calculator/calculator.css +280 -0
- package/apps/cost-calculator/calculator.js +150 -0
- package/apps/cost-calculator/index.html +321 -0
- package/apps/cost-calculator/package.json +13 -0
- package/articles/ANNOUNCEMENT_reddit_ml.md +76 -0
- package/articles/ANNOUNCEMENT_vc/347/244/276/345/214/272.md +71 -0
- package/articles/ANNOUNCEMENT_vercel.md +85 -0
- package/dist/providers/providerConfig.d.ts +5 -1
- package/dist/providers/providerConfig.js +1006 -1
- package/dist/providers/providerConfig.js.map +1 -1
- package/docs/llms.txt +3 -3
- package/package.json +2 -2
- package/packages/a3m-vercel-ai/README.md +161 -0
- package/packages/a3m-vercel-ai/dist/a3m-language-model.d.ts +12 -0
- package/packages/a3m-vercel-ai/dist/a3m-language-model.d.ts.map +1 -0
- package/packages/a3m-vercel-ai/dist/a3m-language-model.js +289 -0
- package/packages/a3m-vercel-ai/dist/a3m-language-model.js.map +1 -0
- package/packages/a3m-vercel-ai/dist/index.d.ts +82 -0
- package/packages/a3m-vercel-ai/dist/index.d.ts.map +1 -0
- package/packages/a3m-vercel-ai/dist/index.js +79 -0
- package/packages/a3m-vercel-ai/dist/index.js.map +1 -0
- package/packages/a3m-vercel-ai/dist/types.d.ts +97 -0
- package/packages/a3m-vercel-ai/dist/types.d.ts.map +1 -0
- package/packages/a3m-vercel-ai/dist/types.js +5 -0
- package/packages/a3m-vercel-ai/dist/types.js.map +1 -0
- package/packages/a3m-vercel-ai/package-lock.json +969 -0
- package/packages/a3m-vercel-ai/package.json +46 -0
- package/packages/a3m-vercel-ai/src/a3m-language-model.ts +381 -0
- package/packages/a3m-vercel-ai/src/index.ts +104 -0
- package/packages/a3m-vercel-ai/src/types.ts +116 -0
- package/packages/a3m-vercel-ai/tsconfig.json +20 -0
- package/src/providers/providerConfig.ts +1053 -1
- package/summary.txt +38 -0
package/summary.txt
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
## A3M Router Integration Status (2026-08-04)
|
|
2
|
+
|
|
3
|
+
### ✅ COMPLETED
|
|
4
|
+
- CrewAI PR #1: MERGED (June 3, 2026) - A3M Router support added to CrewAI
|
|
5
|
+
- Created 18+ A3M integration repos:
|
|
6
|
+
- browser-use (108k stars)
|
|
7
|
+
- a3m-llamaindex, a3m-cursor-mcp, a3m-salesforce, a3m-hubspot, a3m-github-copilot
|
|
8
|
+
- a3m-vercel-ai (npm published v0.1.0)
|
|
9
|
+
- a3m-llamaindex, a3m-cursor-mcp, a3m-autogen, a3m-google-workspace, a3m-vercel-ai
|
|
10
|
+
- Updated README and PRs to remove RouterArena rank claims
|
|
11
|
+
- Created 100+ integration opportunities list
|
|
12
|
+
|
|
13
|
+
### 🔴 IN PROGRESS
|
|
14
|
+
1. **browser-use PR #5378**:
|
|
15
|
+
- Status: OPEN
|
|
16
|
+
- Issue: CLA not signed (author email not linked to GitHub)
|
|
17
|
+
- Action: Sign CLA, fix commit author, push to main branch
|
|
18
|
+
|
|
19
|
+
2. **CrewAI PR #6794**:
|
|
20
|
+
- Status: OPEN with 2 reviews
|
|
21
|
+
- Need to address remaining review comments
|
|
22
|
+
- Already implemented all requested changes from review
|
|
23
|
+
|
|
24
|
+
3. **n8n Community Node**
|
|
25
|
+
- Repo created: https://github.com/Das-rebel/n8n-nodes-a3m-router
|
|
26
|
+
- Files created: README, package.json, example.ts, index.ts, package.json
|
|
27
|
+
- Need to:
|
|
28
|
+
- Fix directory structure
|
|
29
|
+
- Add proper n8n-node CLI integration
|
|
30
|
+
- Push to GitHub and create PR
|
|
31
|
+
|
|
32
|
+
### 🔜 Next Steps:
|
|
33
|
+
1. Fix browser-use PR CLA issue (priority #1)
|
|
34
|
+
2. Complete n8n node submission
|
|
35
|
+
3. Create AutoGen/LangChain examples
|
|
36
|
+
4. Target enterprise integrations (Salesforce, GitHub Copilot)
|
|
37
|
+
|
|
38
|
+
## 🚀 Ready for next actions!
|