@moldea.ai/adapter-openai-agents-sdk 2.0.0 → 3.0.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/README.md +3 -3
- package/dist/constants/index.d.ts +1 -1
- package/dist/constants/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -8,12 +8,12 @@ The package implements the official `openai-agents-sdk` runtime adapter for `@mo
|
|
|
8
8
|
|
|
9
9
|
## Supported target
|
|
10
10
|
|
|
11
|
-
Version `
|
|
11
|
+
Version `3.0.0` supports:
|
|
12
12
|
|
|
13
13
|
- Repository Format version `1`
|
|
14
|
-
- `@moldea.ai/core
|
|
14
|
+
- `@moldea.ai/core ^4.0.0`
|
|
15
15
|
- TypeScript ESM source
|
|
16
|
-
- npm `@openai/agents >=0.16.1
|
|
16
|
+
- npm `@openai/agents >=0.16.1`
|
|
17
17
|
- directly exported `const` agents constructed through `new Agent({ ... })` or `Agent.create({ ... })`
|
|
18
18
|
- direct, awaited, referenced, or single-return-wrapper instruction loaders
|
|
19
19
|
- direct agent output-schema relationships through `outputType`
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const OPENAI_AGENTS_SDK_ADAPTER_ID = "openai-agents-sdk";
|
|
2
2
|
export declare const OPENAI_AGENTS_SDK_PACKAGE_NAME = "@openai/agents";
|
|
3
|
-
export declare const OPENAI_AGENTS_SDK_SUPPORTED_RANGE = ">=0.16.1
|
|
3
|
+
export declare const OPENAI_AGENTS_SDK_SUPPORTED_RANGE = ">=0.16.1";
|
|
4
4
|
export declare const OPENAI_AGENTS_SDK_TARGET_ID = "typescript-agent-handoffs-0-16";
|
|
5
5
|
export declare const OPENAI_AGENTS_SDK_SUPPORTED_REPOSITORY_FORMAT_VERSIONS: readonly 1[];
|
|
6
6
|
export declare const OPENAI_AGENTS_SDK_TOOL_NAME_PATTERN: RegExp;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/constants/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,4BAA4B,sBAAsB,CAAC;AAChE,eAAO,MAAM,8BAA8B,mBAAmB,CAAC;AAC/D,eAAO,MAAM,iCAAiC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/constants/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,4BAA4B,sBAAsB,CAAC;AAChE,eAAO,MAAM,8BAA8B,mBAAmB,CAAC;AAC/D,eAAO,MAAM,iCAAiC,aAAa,CAAC;AAC5D,eAAO,MAAM,2BAA2B,mCAAmC,CAAC;AAC5E,eAAO,MAAM,sDAAsD,cAEnB,CAAC;AAGjD,eAAO,MAAM,mCAAmC,QAAoB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { readRuntimeAdapterFile } from "@moldea.ai/core/adapter";
|
|
|
6
6
|
//#region src/constants/index.ts
|
|
7
7
|
var OPENAI_AGENTS_SDK_ADAPTER_ID = "openai-agents-sdk";
|
|
8
8
|
var OPENAI_AGENTS_SDK_PACKAGE_NAME = "@openai/agents";
|
|
9
|
-
var OPENAI_AGENTS_SDK_SUPPORTED_RANGE = ">=0.16.1
|
|
9
|
+
var OPENAI_AGENTS_SDK_SUPPORTED_RANGE = ">=0.16.1";
|
|
10
10
|
var OPENAI_AGENTS_SDK_SUPPORTED_REPOSITORY_FORMAT_VERSIONS = Object.freeze([1]);
|
|
11
11
|
var OPENAI_AGENTS_SDK_TOOL_NAME_PATTERN = /^[A-Za-z0-9_]+$/;
|
|
12
12
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moldea.ai/adapter-openai-agents-sdk",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Deterministic runtime evidence and diagnostics for direct OpenAI Agents SDK integrations.",
|
|
5
5
|
"homepage": "https://github.com/moldea-ai/packages/tree/main/projects/adapter-openai-agents-sdk#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"node": ">=22.11.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@moldea.ai/core": "
|
|
37
|
-
"@moldea.ai/repository": "2.0.0",
|
|
36
|
+
"@moldea.ai/core": "^4.0.0",
|
|
37
|
+
"@moldea.ai/repository": "^2.0.0",
|
|
38
38
|
"semver": "7.8.5",
|
|
39
39
|
"typescript": "6.0.3"
|
|
40
40
|
},
|