feat: 全面支持deepseek
This commit is contained in:
@@ -12,18 +12,16 @@ const receiveMsg = (connection) => {
|
||||
chatStore.delUser(userId);
|
||||
});
|
||||
//接受其他用户消息
|
||||
connection.on("receiveMsg", (type, content) => {
|
||||
connection.on("receiveMsg", (type,relStr, content) => {
|
||||
const letChatStore = useChatStore();
|
||||
//如果是ai消息,还要进行流式显示
|
||||
// alert(type)
|
||||
if (type == 3) {
|
||||
if (type === 3) {//(ai消息,还需要支持动态类型)
|
||||
content.messageType ='ai@'+ relStr;
|
||||
letChatStore.addOrUpdateMsg(content);
|
||||
}
|
||||
else {
|
||||
letChatStore.addMsg(content);
|
||||
}
|
||||
|
||||
|
||||
});
|
||||
//用户状态-正在输入中,无
|
||||
connection.on("userStatus", (type) => {
|
||||
|
||||
Reference in New Issue
Block a user