@vornrun/connector-openai 0.1.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/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@vornrun/connector-openai",
3
+ "version": "0.1.0",
4
+ "description": "Trigger workflows when an OpenAI batch or fine-tuning job finishes or a file is uploaded, and create responses, chat completions, embeddings, moderations and batches from a step.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Javier Canizalez <javier-canizalez@outlook.com>",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/vorn-run/connectors.git",
11
+ "directory": "packages/openai"
12
+ },
13
+ "keywords": [
14
+ "vorn",
15
+ "connector",
16
+ "openai",
17
+ "mcp"
18
+ ],
19
+ "bin": {
20
+ "vorn-connector-openai": "dist/index.js"
21
+ },
22
+ "main": "./dist/index.js",
23
+ "types": "./dist/index.d.ts",
24
+ "exports": {
25
+ ".": {
26
+ "types": "./dist/index.d.ts",
27
+ "default": "./dist/index.js"
28
+ }
29
+ },
30
+ "files": [
31
+ "dist",
32
+ "README.md",
33
+ "CHANGELOG.md"
34
+ ],
35
+ "scripts": {
36
+ "build": "tsup",
37
+ "typecheck": "tsc --noEmit",
38
+ "test": "vitest run"
39
+ },
40
+ "dependencies": {
41
+ "@vornrun/connector-sdk": "^0.7.0-beta.14"
42
+ },
43
+ "devDependencies": {
44
+ "@types/node": "^22.10.2",
45
+ "@vitest/coverage-v8": "^4.1.10",
46
+ "tsup": "^8.5.1",
47
+ "typescript": "^6.0.3",
48
+ "vitest": "^4.1.10"
49
+ },
50
+ "vorn": {
51
+ "category": "AI",
52
+ "keywords": [
53
+ "openai",
54
+ "gpt",
55
+ "chatgpt",
56
+ "llm",
57
+ "responses",
58
+ "chat completions",
59
+ "embeddings",
60
+ "moderation",
61
+ "batches",
62
+ "fine-tuning"
63
+ ],
64
+ "auth": "Paste an API key from https://platform.openai.com/api-keys. There is no OpenAI CLI to sign in with.",
65
+ "packs": true
66
+ }
67
+ }