@aigne/test-utils 0.5.1 → 0.5.2
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 +9 -0
- package/lib/utils/openai-like-utils.d.ts +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.5.2](https://github.com/AIGNE-io/aigne-framework/compare/test-utils-v0.5.1...test-utils-v0.5.2) (2025-07-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* The following workspace dependencies were updated
|
|
9
|
+
* dependencies
|
|
10
|
+
* @aigne/core bumped to 1.32.0
|
|
11
|
+
|
|
3
12
|
## [0.5.1](https://github.com/AIGNE-io/aigne-framework/compare/test-utils-v0.5.0...test-utils-v0.5.1) (2025-07-04)
|
|
4
13
|
|
|
5
14
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type ChatModelInputResponseFormat, type ChatModelInputTool, type ChatModelOutputToolCall, type Message } from "@aigne/core";
|
|
2
2
|
export declare const COMMON_TOOLS: ChatModelInputTool[];
|
|
3
3
|
export declare const COMMON_RESPONSE_FORMAT: ChatModelInputResponseFormat;
|
|
4
|
-
export declare const createWeatherToolMessages: () => import("@aigne/core").ChatModelInputMessage[]
|
|
4
|
+
export declare const createWeatherToolMessages: () => Promise<import("@aigne/core").ChatModelInputMessage[]>;
|
|
5
5
|
export declare const createWeatherToolExpected: () => any;
|
|
6
|
-
export declare const createWeatherToolCallMessages: () => import("@aigne/core").ChatModelInputMessage[]
|
|
6
|
+
export declare const createWeatherToolCallMessages: () => Promise<import("@aigne/core").ChatModelInputMessage[]>;
|
|
7
7
|
export declare function createToolCallResponse(functionName: string, args: Message): ChatModelOutputToolCall;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/test-utils",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "Test utils for AIGNE framework",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@aigne/core": "^1.
|
|
27
|
+
"@aigne/core": "^1.32.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/bun": "^1.2.17",
|