@dcrays/dcgchat-test 0.1.19 → 0.1.20
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 +1 -1
- package/src/channel.ts +5 -3
package/package.json
CHANGED
package/src/channel.ts
CHANGED
|
@@ -86,9 +86,11 @@ export const dcgchatPlugin: ChannelPlugin<ResolvedDcgchatAccount> = {
|
|
|
86
86
|
// blockStreaming: true,
|
|
87
87
|
},
|
|
88
88
|
agentPrompt: {
|
|
89
|
-
messageToolHints: () =>
|
|
90
|
-
|
|
91
|
-
|
|
89
|
+
messageToolHints: () => {
|
|
90
|
+
return [
|
|
91
|
+
`- 如果有文件生成,直接将文件生成到根目录的${uploadRoot}文件夹下,并将文件发送给我`,
|
|
92
|
+
]
|
|
93
|
+
},
|
|
92
94
|
},
|
|
93
95
|
reload: { configPrefixes: ["channels.dcgchat"] },
|
|
94
96
|
configSchema: {
|