@aigne/core 1.4.1-8 → 1.5.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/CHANGELOG.md CHANGED
@@ -22,6 +22,18 @@
22
22
  * rename @aigne/core-next to @aigne/core ([3a81009](https://github.com/AIGNE-io/aigne-framework/commit/3a8100962c81813217b687ae28e8de604419c622))
23
23
  * use text resource from MCP correctly ([8b9eba8](https://github.com/AIGNE-io/aigne-framework/commit/8b9eba83352ec096a2a5d4f410d4c4bde7420bce))
24
24
 
25
+ ## [1.5.0](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.4.0...core-v1.5.0) (2025-03-27)
26
+
27
+
28
+ ### Features
29
+
30
+ * **dx:** show mcp server url on connecting ([#39](https://github.com/AIGNE-io/aigne-framework/issues/39)) ([5819a76](https://github.com/AIGNE-io/aigne-framework/commit/5819a76435fae7333720f9e0c58a25aebc1089e3))
31
+
32
+
33
+ ### Bug Fixes
34
+
35
+ * **dx:** export models/utils in submodules ([#43](https://github.com/AIGNE-io/aigne-framework/issues/43)) ([bd561b3](https://github.com/AIGNE-io/aigne-framework/commit/bd561b397de816f04c2d63d58538e81fba82fc7f))
36
+
25
37
  ## [1.4.0](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.3.1...core-v1.4.0) (2025-03-26)
26
38
 
27
39
 
@@ -6,12 +6,5 @@ export * from "./agents/types.js";
6
6
  export * from "./agents/user-agent.js";
7
7
  export * from "./execution-engine/index.js";
8
8
  export * from "./models/chat-model.js";
9
- export * from "./models/claude-chat-model.js";
10
- export * from "./models/openai-chat-model.js";
11
- export * from "./models/xai-chat-model.js";
12
9
  export * from "./prompt/prompt-builder.js";
13
10
  export * from "./prompt/template.js";
14
- export * from "./utils/json-schema.js";
15
- export * from "./utils/logger.js";
16
- export * from "./utils/run-chat-loop.js";
17
- export * from "./utils/type-utils.js";
package/lib/cjs/index.js CHANGED
@@ -22,12 +22,5 @@ __exportStar(require("./agents/types.js"), exports);
22
22
  __exportStar(require("./agents/user-agent.js"), exports);
23
23
  __exportStar(require("./execution-engine/index.js"), exports);
24
24
  __exportStar(require("./models/chat-model.js"), exports);
25
- __exportStar(require("./models/claude-chat-model.js"), exports);
26
- __exportStar(require("./models/openai-chat-model.js"), exports);
27
- __exportStar(require("./models/xai-chat-model.js"), exports);
28
25
  __exportStar(require("./prompt/prompt-builder.js"), exports);
29
26
  __exportStar(require("./prompt/template.js"), exports);
30
- __exportStar(require("./utils/json-schema.js"), exports);
31
- __exportStar(require("./utils/logger.js"), exports);
32
- __exportStar(require("./utils/run-chat-loop.js"), exports);
33
- __exportStar(require("./utils/type-utils.js"), exports);
@@ -6,12 +6,5 @@ export * from "./agents/types.js";
6
6
  export * from "./agents/user-agent.js";
7
7
  export * from "./execution-engine/index.js";
8
8
  export * from "./models/chat-model.js";
9
- export * from "./models/claude-chat-model.js";
10
- export * from "./models/openai-chat-model.js";
11
- export * from "./models/xai-chat-model.js";
12
9
  export * from "./prompt/prompt-builder.js";
13
10
  export * from "./prompt/template.js";
14
- export * from "./utils/json-schema.js";
15
- export * from "./utils/logger.js";
16
- export * from "./utils/run-chat-loop.js";
17
- export * from "./utils/type-utils.js";
@@ -6,12 +6,5 @@ export * from "./agents/types.js";
6
6
  export * from "./agents/user-agent.js";
7
7
  export * from "./execution-engine/index.js";
8
8
  export * from "./models/chat-model.js";
9
- export * from "./models/claude-chat-model.js";
10
- export * from "./models/openai-chat-model.js";
11
- export * from "./models/xai-chat-model.js";
12
9
  export * from "./prompt/prompt-builder.js";
13
10
  export * from "./prompt/template.js";
14
- export * from "./utils/json-schema.js";
15
- export * from "./utils/logger.js";
16
- export * from "./utils/run-chat-loop.js";
17
- export * from "./utils/type-utils.js";
package/lib/esm/index.js CHANGED
@@ -6,12 +6,5 @@ export * from "./agents/types.js";
6
6
  export * from "./agents/user-agent.js";
7
7
  export * from "./execution-engine/index.js";
8
8
  export * from "./models/chat-model.js";
9
- export * from "./models/claude-chat-model.js";
10
- export * from "./models/openai-chat-model.js";
11
- export * from "./models/xai-chat-model.js";
12
9
  export * from "./prompt/prompt-builder.js";
13
10
  export * from "./prompt/template.js";
14
- export * from "./utils/json-schema.js";
15
- export * from "./utils/logger.js";
16
- export * from "./utils/run-chat-loop.js";
17
- export * from "./utils/type-utils.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/core",
3
- "version": "1.4.1-8",
3
+ "version": "1.5.0",
4
4
  "description": "AIGNE core library for building AI-powered applications",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -29,6 +29,33 @@
29
29
  "import": "./lib/esm/index.js",
30
30
  "require": "./lib/cjs/index.js",
31
31
  "types": "./lib/dts/index.d.ts"
32
+ },
33
+ "./*": {
34
+ "import": "./lib/esm/*",
35
+ "require": "./lib/cjs/*",
36
+ "types": "./lib/dts/*"
37
+ }
38
+ },
39
+ "typesVersions": {
40
+ "*": {
41
+ ".": [
42
+ "./lib/dts/index.d.ts"
43
+ ],
44
+ "agents/*": [
45
+ "./lib/dts/agents/*"
46
+ ],
47
+ "execution-engine/*": [
48
+ "./lib/dts/execution-engine/*"
49
+ ],
50
+ "models/*": [
51
+ "./lib/dts/models/*"
52
+ ],
53
+ "prompt/*": [
54
+ "./lib/dts/prompt/*"
55
+ ],
56
+ "utils/*": [
57
+ "./lib/dts/utils/*"
58
+ ]
32
59
  }
33
60
  },
34
61
  "dependencies": {
@@ -48,8 +75,7 @@
48
75
  "peerDependencies": {
49
76
  "@anthropic-ai/sdk": "^0.39.0",
50
77
  "@google/generative-ai": "^0.24.0",
51
- "openai": "^4.87.3",
52
- "pkce-challenge": "https://github.com/AIGNE-io/pkce-challenge#dist"
78
+ "openai": "^4.87.3"
53
79
  },
54
80
  "devDependencies": {
55
81
  "@anthropic-ai/sdk": "^0.39.0",
@@ -61,12 +87,6 @@
61
87
  "rimraf": "^6.0.1",
62
88
  "typescript": "^5.8.2"
63
89
  },
64
- "resolutions": {
65
- "pkce-challenge": "https://github.com/AIGNE-io/pkce-challenge#dist"
66
- },
67
- "overrides": {
68
- "pkce-challenge": "https://github.com/AIGNE-io/pkce-challenge#dist"
69
- },
70
90
  "scripts": {
71
91
  "lint": "tsc --noEmit",
72
92
  "build": "tsc --build scripts/tsconfig.build.json",