@rulvar/bridge-ai-sdk 1.3.1 → 1.4.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/README.md +30 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# @rulvar/bridge-ai-sdk
|
|
2
|
+
|
|
3
|
+
Bridge adapter that wraps a Vercel AI SDK `LanguageModelV4` model as a
|
|
4
|
+
rulvar provider adapter, covering the long tail of providers; models on
|
|
5
|
+
other specification versions are rejected by a runtime check, and the
|
|
6
|
+
package is, by design, the highest-churn one in the project. Exports
|
|
7
|
+
`bridgeAiSdk`.
|
|
8
|
+
|
|
9
|
+
Part of [rulvar](https://rulvar.com), an embeddable TypeScript engine
|
|
10
|
+
for durable, budget-bounded multi-agent LLM workflows, where a completed
|
|
11
|
+
LLM call is never paid for twice. Full documentation:
|
|
12
|
+
[docs.rulvar.com](https://docs.rulvar.com).
|
|
13
|
+
|
|
14
|
+
## Install
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pnpm add @rulvar/core @rulvar/bridge-ai-sdk
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Add the AI SDK provider package you are bridging alongside it.
|
|
21
|
+
|
|
22
|
+
## Documentation
|
|
23
|
+
|
|
24
|
+
- [Providers](https://docs.rulvar.com/guide/providers)
|
|
25
|
+
- [Adapter authors](https://docs.rulvar.com/guide/adapter-authors)
|
|
26
|
+
- [API reference](https://docs.rulvar.com/api/%40rulvar/bridge-ai-sdk/)
|
|
27
|
+
|
|
28
|
+
## License
|
|
29
|
+
|
|
30
|
+
[Apache-2.0](https://github.com/o-stepper/rulvar/blob/main/LICENSE)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rulvar/bridge-ai-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "rulvar bridge adapter wrapping any Vercel AI SDK LanguageModelV4 as a ProviderAdapter.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@ai-sdk/provider": "^4.0.0",
|
|
26
|
-
"@rulvar/core": "1.
|
|
26
|
+
"@rulvar/core": "1.4.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@ai-sdk/google": "^4.0.0",
|