@aigne/core 1.50.0 → 1.50.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
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.50.1](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.50.0...core-v1.50.1) (2025-08-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **core:** make getCredential async for aigne-hub mount point retrieval ([#372](https://github.com/AIGNE-io/aigne-framework/issues/372)) ([34ce7a6](https://github.com/AIGNE-io/aigne-framework/commit/34ce7a645fa83994d3dfe0f29ca70098cfecac9c))
|
|
9
|
+
|
|
3
10
|
## [1.50.0](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.49.1...core-v1.50.0) (2025-08-14)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -26,11 +26,11 @@ import { Agent, type AgentInvokeOptions, type AgentProcessResult, type Message }
|
|
|
26
26
|
export declare abstract class ChatModel extends Agent<ChatModelInput, ChatModelOutput> {
|
|
27
27
|
tag: string;
|
|
28
28
|
constructor();
|
|
29
|
-
abstract getCredential(): {
|
|
29
|
+
abstract getCredential(): Promise<{
|
|
30
30
|
url?: string;
|
|
31
31
|
apiKey?: string;
|
|
32
32
|
model?: string;
|
|
33
|
-
}
|
|
33
|
+
}>;
|
|
34
34
|
/**
|
|
35
35
|
* Indicates whether the model supports parallel tool calls
|
|
36
36
|
*
|
|
@@ -26,11 +26,11 @@ import { Agent, type AgentInvokeOptions, type AgentProcessResult, type Message }
|
|
|
26
26
|
export declare abstract class ChatModel extends Agent<ChatModelInput, ChatModelOutput> {
|
|
27
27
|
tag: string;
|
|
28
28
|
constructor();
|
|
29
|
-
abstract getCredential(): {
|
|
29
|
+
abstract getCredential(): Promise<{
|
|
30
30
|
url?: string;
|
|
31
31
|
apiKey?: string;
|
|
32
32
|
model?: string;
|
|
33
|
-
}
|
|
33
|
+
}>;
|
|
34
34
|
/**
|
|
35
35
|
* Indicates whether the model supports parallel tool calls
|
|
36
36
|
*
|
|
@@ -26,11 +26,11 @@ import { Agent, type AgentInvokeOptions, type AgentProcessResult, type Message }
|
|
|
26
26
|
export declare abstract class ChatModel extends Agent<ChatModelInput, ChatModelOutput> {
|
|
27
27
|
tag: string;
|
|
28
28
|
constructor();
|
|
29
|
-
abstract getCredential(): {
|
|
29
|
+
abstract getCredential(): Promise<{
|
|
30
30
|
url?: string;
|
|
31
31
|
apiKey?: string;
|
|
32
32
|
model?: string;
|
|
33
|
-
}
|
|
33
|
+
}>;
|
|
34
34
|
/**
|
|
35
35
|
* Indicates whether the model supports parallel tool calls
|
|
36
36
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/core",
|
|
3
|
-
"version": "1.50.
|
|
3
|
+
"version": "1.50.1",
|
|
4
4
|
"description": "The functional core of agentic AI",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -89,8 +89,8 @@
|
|
|
89
89
|
"yaml": "^2.8.0",
|
|
90
90
|
"zod": "^3.25.67",
|
|
91
91
|
"zod-to-json-schema": "^3.24.6",
|
|
92
|
-
"@aigne/
|
|
93
|
-
"@aigne/
|
|
92
|
+
"@aigne/platform-helpers": "^0.6.2",
|
|
93
|
+
"@aigne/observability-api": "^0.9.0"
|
|
94
94
|
},
|
|
95
95
|
"devDependencies": {
|
|
96
96
|
"@types/bun": "^1.2.18",
|