@sliverp/qqbot 1.3.13 → 1.4.1
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/bin/qqbot-cli.js +1 -1
- package/package.json +1 -1
- package/src/config.ts +1 -1
- package/src/gateway.ts +2 -1
package/bin/qqbot-cli.js
CHANGED
package/package.json
CHANGED
package/src/config.ts
CHANGED
|
@@ -76,7 +76,7 @@ export function resolveQQBotAccount(
|
|
|
76
76
|
allowFrom: qqbot?.allowFrom,
|
|
77
77
|
systemPrompt: qqbot?.systemPrompt,
|
|
78
78
|
imageServerBaseUrl: qqbot?.imageServerBaseUrl,
|
|
79
|
-
markdownSupport: qqbot?.markdownSupport,
|
|
79
|
+
markdownSupport: qqbot?.markdownSupport ?? true,
|
|
80
80
|
};
|
|
81
81
|
appId = qqbot?.appId ?? "";
|
|
82
82
|
} else {
|
package/src/gateway.ts
CHANGED
|
@@ -499,7 +499,8 @@ openclaw cron add \\
|
|
|
499
499
|
⚠️ 注意:
|
|
500
500
|
- 必须使用 <qqimg>路径</qqimg> 格式
|
|
501
501
|
- 本地路径必须是绝对路径,支持 png、jpg、jpeg、gif、webp 格式
|
|
502
|
-
- 图片文件/URL
|
|
502
|
+
- 图片文件/URL 必须有效,否则发送失败
|
|
503
|
+
- Markdown格式下,也必须使用该方式发送图片`;
|
|
503
504
|
|
|
504
505
|
const systemPrompts = [builtinPrompt];
|
|
505
506
|
if (account.systemPrompt) {
|