Skip to content

Commit

Permalink
[mailstone] Runs ok after code refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
sytpb committed Apr 24, 2023
1 parent 7be2dda commit 8c2dff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chat/text.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default class TextChat extends Chat{

debug.log(question);
const message = new Message();
message.reply(res, { type: 'text', content: '正在生成回答...' }, toUser);
message.reply(res, { type: 'text', content: '正在生成回答' }, toUser);

getAIChat(question).then(result => {
const content = result?.data?.choices[0]?.message?.content;
Expand Down

0 comments on commit 8c2dff5

Please sign in to comment.