@reminix/vercel-ai 0.0.11 → 0.0.13
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 +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -69,7 +69,7 @@ serve({ agents: [reminixAgent], port: 8080 });
|
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
Your agent is now available at:
|
|
72
|
-
- `POST /agents/<name>/
|
|
72
|
+
- `POST /agents/<name>/invoke` - Execute the agent
|
|
73
73
|
|
|
74
74
|
## API Reference
|
|
75
75
|
|
|
@@ -122,7 +122,7 @@ serve({ agents: [gpt, claude, gemini], port: 8080 });
|
|
|
122
122
|
|
|
123
123
|
## Endpoint Input/Output Formats
|
|
124
124
|
|
|
125
|
-
### POST /agents/{name}/
|
|
125
|
+
### POST /agents/{name}/invoke
|
|
126
126
|
|
|
127
127
|
Execute the agent with a prompt or messages.
|
|
128
128
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reminix/vercel-ai",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"description": "Reminix adapter for Vercel AI SDK - serve agents as REST APIs",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -47,16 +47,16 @@
|
|
|
47
47
|
"LICENSE"
|
|
48
48
|
],
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@reminix/runtime": "^0.0.
|
|
50
|
+
"@reminix/runtime": "^0.0.13"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"ai": ">=6.0.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@types/node": "^
|
|
56
|
+
"@types/node": "^25.0.9",
|
|
57
57
|
"ai": "^6.0.31",
|
|
58
58
|
"typescript": "^5.9.3",
|
|
59
|
-
"vitest": "^
|
|
59
|
+
"vitest": "^4.0.17"
|
|
60
60
|
},
|
|
61
61
|
"scripts": {
|
|
62
62
|
"build": "tsc",
|