Skip to content

Commit 55c84cd

Browse files
committed
chore: make lint happy
1 parent 7cab7e6 commit 55c84cd

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

chat/chat.go

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,12 @@ import (
1818
var SystemPrompt string
1919

2020
var (
21+
// AtPrefix @用户时给 LLM 的前缀提示, 需要和提示词一致
2122
AtPrefix = ">>"
22-
NameL = "【"
23-
NameR = "】"
23+
// NameL 包裹用户名的左括号, 需要和提示词一致
24+
NameL = "【"
25+
// NameR 包裹用户名的右括号, 需要和提示词一致
26+
NameR = "】"
2427
)
2528

2629
// lst 全局聊天记录,每群/每用户独立保存最近 8 条

0 commit comments

Comments
 (0)