agent-swarm-kit 1.1.154 → 1.1.156
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/package.json +2 -2
- package/types.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-swarm-kit",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.156",
|
|
4
4
|
"description": "A TypeScript library for building orchestrated framework-agnostic multi-agent AI systems",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Petr Tripolsky",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"dependencies": {
|
|
82
82
|
"di-kit": "^1.0.18",
|
|
83
83
|
"di-scoped": "^1.0.20",
|
|
84
|
-
"functools-kit": "^1.0.
|
|
84
|
+
"functools-kit": "^1.0.92",
|
|
85
85
|
"get-moment-stamp": "^1.1.1",
|
|
86
86
|
"lodash-es": "4.17.21",
|
|
87
87
|
"xml2js": "0.6.2"
|
package/types.d.ts
CHANGED
|
@@ -3158,6 +3158,7 @@ interface IOutlineMessage {
|
|
|
3158
3158
|
* @type {"assistant" | "system" | "tool" | "user"}
|
|
3159
3159
|
*/
|
|
3160
3160
|
role: "assistant" | "system" | "tool" | "user";
|
|
3161
|
+
images?: Uint8Array[] | string[];
|
|
3161
3162
|
/**
|
|
3162
3163
|
* The content of the message.
|
|
3163
3164
|
* Contains the raw text or param of the message, used in history storage or processing.
|