koishi-plugin-chatluna-plugin-common 1.3.2 → 1.3.3
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/lib/plugins/cron.d.ts
CHANGED
|
@@ -20,16 +20,16 @@ export declare class CronTool extends StructuredTool {
|
|
|
20
20
|
executorUserId: z.ZodOptional<z.ZodString>;
|
|
21
21
|
taskId: z.ZodOptional<z.ZodNumber>;
|
|
22
22
|
}, "strip", z.ZodTypeAny, {
|
|
23
|
-
type?: "command" | "notification";
|
|
24
23
|
time?: string;
|
|
24
|
+
type?: "command" | "notification";
|
|
25
25
|
content?: string;
|
|
26
26
|
recipient?: string;
|
|
27
27
|
executorUserId?: string;
|
|
28
28
|
action?: "get" | "create" | "cancel";
|
|
29
29
|
taskId?: number;
|
|
30
30
|
}, {
|
|
31
|
-
type?: "command" | "notification";
|
|
32
31
|
time?: string;
|
|
32
|
+
type?: "command" | "notification";
|
|
33
33
|
content?: string;
|
|
34
34
|
recipient?: string;
|
|
35
35
|
executorUserId?: string;
|
package/lib/plugins/request.d.ts
CHANGED
|
@@ -50,11 +50,11 @@ export declare class RequestsPostTool extends StructuredTool implements RequestT
|
|
|
50
50
|
url: z.ZodString;
|
|
51
51
|
data: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
52
52
|
}, "strip", z.ZodTypeAny, {
|
|
53
|
-
data?: Record<string, any>;
|
|
54
53
|
url?: string;
|
|
55
|
-
}, {
|
|
56
54
|
data?: Record<string, any>;
|
|
55
|
+
}, {
|
|
57
56
|
url?: string;
|
|
57
|
+
data?: Record<string, any>;
|
|
58
58
|
}>;
|
|
59
59
|
maxOutputLength: number;
|
|
60
60
|
headerConfigs: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "koishi-plugin-chatluna-plugin-common",
|
|
3
3
|
"description": "plugin service for agent mode of chatluna",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.3",
|
|
5
5
|
"main": "lib/index.cjs",
|
|
6
6
|
"module": "lib/index.mjs",
|
|
7
7
|
"typings": "lib/index.d.ts",
|
|
@@ -33,16 +33,16 @@
|
|
|
33
33
|
"build": "atsc -b"
|
|
34
34
|
},
|
|
35
35
|
"resolutions": {
|
|
36
|
-
"@langchain/core": "0.3.
|
|
36
|
+
"@langchain/core": "^0.3.80",
|
|
37
37
|
"js-tiktoken": "npm:@dingyi222666/js-tiktoken@^1.0.21"
|
|
38
38
|
},
|
|
39
39
|
"overrides": {
|
|
40
|
-
"@langchain/core": "0.3.
|
|
40
|
+
"@langchain/core": "^0.3.80",
|
|
41
41
|
"js-tiktoken": "npm:@dingyi222666/js-tiktoken@^1.0.21"
|
|
42
42
|
},
|
|
43
43
|
"pnpm": {
|
|
44
44
|
"overrides": {
|
|
45
|
-
"@langchain/core": "0.3.
|
|
45
|
+
"@langchain/core": "^0.3.80",
|
|
46
46
|
"js-tiktoken": "npm:@dingyi222666/js-tiktoken@^1.0.21"
|
|
47
47
|
}
|
|
48
48
|
},
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"vectorstore"
|
|
56
56
|
],
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@langchain/core": "0.3.
|
|
58
|
+
"@langchain/core": "^0.3.80",
|
|
59
59
|
"js-yaml": "^4.1.0",
|
|
60
60
|
"micromatch": "^4.0.8",
|
|
61
61
|
"zod": "3.25.76"
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"koishi": "^4.18.9",
|
|
71
|
-
"koishi-plugin-chatluna": "^1.3.
|
|
72
|
-
"koishi-plugin-chatluna-storage-service": "^
|
|
71
|
+
"koishi-plugin-chatluna": "^1.3.8",
|
|
72
|
+
"koishi-plugin-chatluna-storage-service": "^1.0.1"
|
|
73
73
|
},
|
|
74
74
|
"peerDependenciesMeta": {
|
|
75
75
|
"koishi-plugin-chatluna-storage-service": {
|