@aigne/transport 0.3.3 → 0.3.5
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,34 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.3.5](https://github.com/AIGNE-io/aigne-framework/compare/transport-v0.3.4...transport-v0.3.5) (2025-06-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **core:** should pass memories from invocation options to nested agents ([#153](https://github.com/AIGNE-io/aigne-framework/issues/153)) ([57629a5](https://github.com/AIGNE-io/aigne-framework/commit/57629a5da6cf2a295356dfe32ecbb15154e098fe))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/openai bumped to 0.2.6
|
|
16
|
+
* devDependencies
|
|
17
|
+
* @aigne/core bumped to 1.18.5
|
|
18
|
+
* @aigne/test-utils bumped to 0.3.7
|
|
19
|
+
|
|
20
|
+
## [0.3.4](https://github.com/AIGNE-io/aigne-framework/compare/transport-v0.3.3...transport-v0.3.4) (2025-06-05)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Dependencies
|
|
24
|
+
|
|
25
|
+
* The following workspace dependencies were updated
|
|
26
|
+
* dependencies
|
|
27
|
+
* @aigne/openai bumped to 0.2.5
|
|
28
|
+
* devDependencies
|
|
29
|
+
* @aigne/core bumped to 1.18.4
|
|
30
|
+
* @aigne/test-utils bumped to 0.3.6
|
|
31
|
+
|
|
3
32
|
## [0.3.3](https://github.com/AIGNE-io/aigne-framework/compare/transport-v0.3.2...transport-v0.3.3) (2025-06-05)
|
|
4
33
|
|
|
5
34
|
|
|
@@ -45,6 +45,7 @@ export declare class AIGNEHTTPClient<U extends UserContext = UserContext> implem
|
|
|
45
45
|
constructor(options: AIGNEHTTPClientOptions);
|
|
46
46
|
usage: ContextUsage;
|
|
47
47
|
userContext: U;
|
|
48
|
+
memories: Context["memories"];
|
|
48
49
|
invoke<I extends Message, O extends Message>(agent: Agent<I, O> | string): UserAgent<I, O>;
|
|
49
50
|
invoke<I extends Message, O extends Message>(agent: Agent<I, O> | string, message: I | string, options: AIGNEHTTPClientInvokeOptions & {
|
|
50
51
|
returnActiveAgent: true;
|
|
@@ -45,6 +45,7 @@ export declare class AIGNEHTTPClient<U extends UserContext = UserContext> implem
|
|
|
45
45
|
constructor(options: AIGNEHTTPClientOptions);
|
|
46
46
|
usage: ContextUsage;
|
|
47
47
|
userContext: U;
|
|
48
|
+
memories: Context["memories"];
|
|
48
49
|
invoke<I extends Message, O extends Message>(agent: Agent<I, O> | string): UserAgent<I, O>;
|
|
49
50
|
invoke<I extends Message, O extends Message>(agent: Agent<I, O> | string, message: I | string, options: AIGNEHTTPClientInvokeOptions & {
|
|
50
51
|
returnActiveAgent: true;
|
|
@@ -45,6 +45,7 @@ export declare class AIGNEHTTPClient<U extends UserContext = UserContext> implem
|
|
|
45
45
|
constructor(options: AIGNEHTTPClientOptions);
|
|
46
46
|
usage: ContextUsage;
|
|
47
47
|
userContext: U;
|
|
48
|
+
memories: Context["memories"];
|
|
48
49
|
invoke<I extends Message, O extends Message>(agent: Agent<I, O> | string): UserAgent<I, O>;
|
|
49
50
|
invoke<I extends Message, O extends Message>(agent: Agent<I, O> | string, message: I | string, options: AIGNEHTTPClientInvokeOptions & {
|
|
50
51
|
returnActiveAgent: true;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/transport",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "AIGNE Transport SDK providing HTTP client and server implementations for communication between AIGNE components",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@aigne/openai": "^0.2.
|
|
42
|
+
"@aigne/openai": "^0.2.6"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/bun": "^1.2.12",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"rimraf": "^6.0.1",
|
|
55
55
|
"typescript": "^5.8.3",
|
|
56
56
|
"uuid": "^11.1.0",
|
|
57
|
-
"@aigne/
|
|
58
|
-
"@aigne/
|
|
57
|
+
"@aigne/core": "^1.18.5",
|
|
58
|
+
"@aigne/test-utils": "^0.3.7"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
|
61
61
|
"lint": "tsc --noEmit",
|