@reminix/openai 0.0.10 → 0.0.12
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
|
@@ -35,7 +35,7 @@ serve({ agents: [agent], port: 8080 });
|
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
Your agent is now available at:
|
|
38
|
-
- `POST /agents/my-chatbot/
|
|
38
|
+
- `POST /agents/my-chatbot/invoke` - Execute the agent
|
|
39
39
|
|
|
40
40
|
## API Reference
|
|
41
41
|
|
|
@@ -85,7 +85,7 @@ serve({ agents: [agent], port: 8080 });
|
|
|
85
85
|
|
|
86
86
|
## Endpoint Input/Output Formats
|
|
87
87
|
|
|
88
|
-
### POST /agents/{name}/
|
|
88
|
+
### POST /agents/{name}/invoke
|
|
89
89
|
|
|
90
90
|
Execute the agent with a prompt or messages.
|
|
91
91
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reminix/openai",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "Reminix adapter for OpenAI - serve agents as REST APIs",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -45,16 +45,16 @@
|
|
|
45
45
|
"LICENSE"
|
|
46
46
|
],
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@reminix/runtime": "^0.0.
|
|
48
|
+
"@reminix/runtime": "^0.0.12"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
51
|
"openai": ">=6.16.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@types/node": "^
|
|
54
|
+
"@types/node": "^25.0.9",
|
|
55
55
|
"openai": "^6.16.0",
|
|
56
56
|
"typescript": "^5.9.3",
|
|
57
|
-
"vitest": "^
|
|
57
|
+
"vitest": "^4.0.17"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"build": "tsc",
|