@reminix/vercel-ai 0.0.1 → 0.0.2
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 +16 -3
- package/package.json +33 -3
package/README.md
CHANGED
|
@@ -1,16 +1,22 @@
|
|
|
1
1
|
# @reminix/vercel-ai
|
|
2
2
|
|
|
3
|
-
Reminix Runtime adapter for the [Vercel AI SDK](https://sdk.
|
|
3
|
+
Reminix Runtime adapter for the [Vercel AI SDK](https://ai-sdk.dev). Serve AI agents as a REST API.
|
|
4
|
+
|
|
5
|
+
Supports both:
|
|
4
6
|
|
|
5
7
|
- **ToolLoopAgent** - Full agents with tools and automatic tool loop handling
|
|
6
8
|
- **Model** - Simple completions via `generateText`/`streamText` without tools
|
|
7
9
|
|
|
10
|
+
> **Ready to go live?** [Deploy to Reminix](https://reminix.com/docs/deployment) for zero-config hosting, or [self-host](https://reminix.com/docs/deployment/self-hosting) on your own infrastructure.
|
|
11
|
+
|
|
8
12
|
## Installation
|
|
9
13
|
|
|
10
14
|
```bash
|
|
11
|
-
npm install @reminix/
|
|
15
|
+
npm install @reminix/vercel-ai ai @ai-sdk/openai
|
|
12
16
|
```
|
|
13
17
|
|
|
18
|
+
This will also install `@reminix/runtime` as a dependency.
|
|
19
|
+
|
|
14
20
|
## Quick Start with ToolLoopAgent
|
|
15
21
|
|
|
16
22
|
For agents with tools, use `ToolLoopAgent`:
|
|
@@ -164,10 +170,17 @@ Conversational chat with message history.
|
|
|
164
170
|
|
|
165
171
|
For information about the server, endpoints, request/response formats, and more, see the [`@reminix/runtime`](https://www.npmjs.com/package/@reminix/runtime) package.
|
|
166
172
|
|
|
173
|
+
## Deployment
|
|
174
|
+
|
|
175
|
+
Ready to go live?
|
|
176
|
+
|
|
177
|
+
- **[Deploy to Reminix](https://reminix.com/docs/deployment)** - Zero-config cloud hosting
|
|
178
|
+
- **[Self-host](https://reminix.com/docs/deployment/self-hosting)** - Run on your own infrastructure
|
|
179
|
+
|
|
167
180
|
## Links
|
|
168
181
|
|
|
169
182
|
- [GitHub Repository](https://github.com/reminix-ai/runtime-typescript)
|
|
170
|
-
- [Vercel AI SDK Documentation](https://sdk.
|
|
183
|
+
- [Vercel AI SDK Documentation](https://ai-sdk.dev)
|
|
171
184
|
|
|
172
185
|
## License
|
|
173
186
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reminix/vercel-ai",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Reminix adapter for Vercel AI SDK",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Reminix adapter for Vercel AI SDK - serve agents as REST APIs",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Reminix Team",
|
|
8
|
+
"email": "team@reminix.com",
|
|
9
|
+
"url": "https://reminix.com"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"ai",
|
|
13
|
+
"agents",
|
|
14
|
+
"vercel",
|
|
15
|
+
"vercel-ai",
|
|
16
|
+
"ai-sdk",
|
|
17
|
+
"llm",
|
|
18
|
+
"reminix",
|
|
19
|
+
"typescript"
|
|
20
|
+
],
|
|
21
|
+
"homepage": "https://reminix.com",
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/reminix-ai/runtime-typescript.git",
|
|
25
|
+
"directory": "packages/vercel-ai"
|
|
26
|
+
},
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/reminix-ai/runtime-typescript/issues"
|
|
29
|
+
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=18"
|
|
32
|
+
},
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public"
|
|
35
|
+
},
|
|
6
36
|
"type": "module",
|
|
7
37
|
"main": "./dist/index.js",
|
|
8
38
|
"types": "./dist/index.d.ts",
|
|
@@ -16,7 +46,7 @@
|
|
|
16
46
|
"dist"
|
|
17
47
|
],
|
|
18
48
|
"dependencies": {
|
|
19
|
-
"@reminix/runtime": "^0.0.
|
|
49
|
+
"@reminix/runtime": "^0.0.2"
|
|
20
50
|
},
|
|
21
51
|
"peerDependencies": {
|
|
22
52
|
"ai": ">=6.0.0"
|