@reminix/openai 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 +13 -2
- package/package.json +31 -3
package/README.md
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
# @reminix/openai
|
|
2
2
|
|
|
3
|
-
Reminix Runtime adapter for the [OpenAI API](https://platform.openai.com/docs).
|
|
3
|
+
Reminix Runtime adapter for the [OpenAI API](https://platform.openai.com/docs). Serve OpenAI models as a REST API.
|
|
4
|
+
|
|
5
|
+
> **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.
|
|
4
6
|
|
|
5
7
|
## Installation
|
|
6
8
|
|
|
7
9
|
```bash
|
|
8
|
-
npm install @reminix/
|
|
10
|
+
npm install @reminix/openai openai
|
|
9
11
|
```
|
|
10
12
|
|
|
13
|
+
This will also install `@reminix/runtime` as a dependency.
|
|
14
|
+
|
|
11
15
|
## Quick Start
|
|
12
16
|
|
|
13
17
|
```typescript
|
|
@@ -125,6 +129,13 @@ Conversational chat with message history.
|
|
|
125
129
|
|
|
126
130
|
For information about the server, endpoints, request/response formats, and more, see the [`@reminix/runtime`](https://www.npmjs.com/package/@reminix/runtime) package.
|
|
127
131
|
|
|
132
|
+
## Deployment
|
|
133
|
+
|
|
134
|
+
Ready to go live?
|
|
135
|
+
|
|
136
|
+
- **[Deploy to Reminix](https://reminix.com/docs/deployment)** - Zero-config cloud hosting
|
|
137
|
+
- **[Self-host](https://reminix.com/docs/deployment/self-hosting)** - Run on your own infrastructure
|
|
138
|
+
|
|
128
139
|
## Links
|
|
129
140
|
|
|
130
141
|
- [GitHub Repository](https://github.com/reminix-ai/runtime-typescript)
|
package/package.json
CHANGED
|
@@ -1,8 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reminix/openai",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Reminix adapter for OpenAI
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Reminix adapter for OpenAI - 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
|
+
"openai",
|
|
15
|
+
"llm",
|
|
16
|
+
"reminix",
|
|
17
|
+
"typescript"
|
|
18
|
+
],
|
|
19
|
+
"homepage": "https://reminix.com",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/reminix-ai/runtime-typescript.git",
|
|
23
|
+
"directory": "packages/openai"
|
|
24
|
+
},
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/reminix-ai/runtime-typescript/issues"
|
|
27
|
+
},
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">=18"
|
|
30
|
+
},
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
6
34
|
"type": "module",
|
|
7
35
|
"main": "./dist/index.js",
|
|
8
36
|
"types": "./dist/index.d.ts",
|
|
@@ -16,7 +44,7 @@
|
|
|
16
44
|
"dist"
|
|
17
45
|
],
|
|
18
46
|
"dependencies": {
|
|
19
|
-
"@reminix/runtime": "^0.0.
|
|
47
|
+
"@reminix/runtime": "^0.0.2"
|
|
20
48
|
},
|
|
21
49
|
"peerDependencies": {
|
|
22
50
|
"openai": ">=6.16.0"
|