@vornrun/connector-openai 0.1.0 → 0.1.1

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to `@vornrun/connector-openai`.
4
4
 
5
+ ## 0.1.1
6
+
7
+ Speaks Vorn's own connector protocol instead of MCP, so it needs Vorn 0.7.1-beta.3 or later. Action arguments arrive as typed values.
8
+
5
9
  ## 0.1.0
6
10
 
7
11
  First release.
package/dist/index.d.ts CHANGED
@@ -32,7 +32,7 @@ interface OpenAIClientOptions {
32
32
  fetchImpl?: FetchLike;
33
33
  /** Injected in tests, so no test spends real time asleep. */
34
34
  sleep?: Sleep;
35
- /** Advisories go to stderr: stdout carries the MCP protocol. */
35
+ /** Advisories go to stderr: stdout carries replies to Vorn. */
36
36
  warn?: Warn;
37
37
  now?: () => number;
38
38
  /** Source of the retry jitter; fixed in tests. */
@@ -46,7 +46,7 @@ interface OpenAIConnectorOptions {
46
46
  fetchImpl?: FetchLike;
47
47
  /** Injected in tests, so no test spends real time asleep. */
48
48
  sleep?: Sleep;
49
- /** Advisories go to stderr: stdout carries the MCP protocol. */
49
+ /** Advisories go to stderr: stdout carries replies to Vorn. */
50
50
  warn?: Warn;
51
51
  /** Where preflight and `$NAME` samples read from; defaults to the process environment. */
52
52
  env?: NodeJS.ProcessEnv;
package/dist/index.js CHANGED
@@ -312,7 +312,7 @@ var SAMPLE_FINE_TUNING_JOB_ITEM = fineTuningJobToItem(SAMPLE_FINE_TUNING_JOB);
312
312
  // package.json
313
313
  var package_default = {
314
314
  name: "@vornrun/connector-openai",
315
- version: "0.1.0",
315
+ version: "0.1.1",
316
316
  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.",
317
317
  type: "module",
318
318
  license: "MIT",
@@ -325,8 +325,7 @@ var package_default = {
325
325
  keywords: [
326
326
  "vorn",
327
327
  "connector",
328
- "openai",
329
- "mcp"
328
+ "openai"
330
329
  ],
331
330
  bin: {
332
331
  "vorn-connector-openai": "dist/index.js"
@@ -350,7 +349,7 @@ var package_default = {
350
349
  test: "vitest run"
351
350
  },
352
351
  dependencies: {
353
- "@vornrun/connector-sdk": "^0.7.0-beta.14"
352
+ "@vornrun/connector-sdk": "^0.7.1-beta.3"
354
353
  },
355
354
  devDependencies: {
356
355
  "@types/node": "^22.10.2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vornrun/connector-openai",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
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
5
  "type": "module",
6
6
  "license": "MIT",
@@ -13,8 +13,7 @@
13
13
  "keywords": [
14
14
  "vorn",
15
15
  "connector",
16
- "openai",
17
- "mcp"
16
+ "openai"
18
17
  ],
19
18
  "bin": {
20
19
  "vorn-connector-openai": "dist/index.js"
@@ -38,7 +37,7 @@
38
37
  "test": "vitest run"
39
38
  },
40
39
  "dependencies": {
41
- "@vornrun/connector-sdk": "^0.7.0-beta.14"
40
+ "@vornrun/connector-sdk": "^0.7.1-beta.3"
42
41
  },
43
42
  "devDependencies": {
44
43
  "@types/node": "^22.10.2",