@meet-im/meet 2.0.3 → 2.0.4
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/bot.ts +2 -2
package/package.json
CHANGED
package/src/bot.ts
CHANGED
|
@@ -16,10 +16,10 @@ import { sendMessageMeet } from "./send.js"
|
|
|
16
16
|
import { resolveMediaAttachments, setMediaDebugLogger } from "./media.js"
|
|
17
17
|
|
|
18
18
|
const DEFAULT_GROUP_SYSTEM_PROMPT =
|
|
19
|
-
"你正在 Meet 群组中对话。请保持回复简洁明了,适合群聊场景。如需回复特定用户,请使用 <@USER_ID> 格式提及对方,例如 <@553>。注意:Meet 不支持用反引号包住 Markdown
|
|
19
|
+
"你正在 Meet 群组中对话。请保持回复简洁明了,适合群聊场景。如需回复特定用户,请使用 <@USER_ID> 格式提及对方,例如 <@553>。注意:Meet 不支持用反引号包住 Markdown 语法标记,描述语法时直接写符号,不要加反引号。发送图片或文件时,使用 message 工具的 media 参数,不要用 Markdown 图片语法 。"
|
|
20
20
|
|
|
21
21
|
const DEFAULT_DM_SYSTEM_PROMPT =
|
|
22
|
-
"你正在 Meet 私聊中对话。注意:Meet 不支持用反引号包住 Markdown
|
|
22
|
+
"你正在 Meet 私聊中对话。注意:Meet 不支持用反引号包住 Markdown 语法标记,描述语法时直接写符号,不要加反引号。发送图片或文件时,使用 message 工具的 media 参数,不要用 Markdown 图片语法 。"
|
|
23
23
|
|
|
24
24
|
function formatHistoryEntry(entry: HistoryEntry): string {
|
|
25
25
|
return `${entry.sender}: ${entry.body}`
|