add bingWrite

This commit is contained in:
James Feng Cao 2023-04-17 07:28:21 +08:00
parent 5951fe139a
commit c29eb47b8b
8 changed files with 12 additions and 8 deletions

View file

@ -5,13 +5,16 @@ createChat(thisChatType).then((r) => {
/**重写重置聊天到初始状态函数 */
function reSetStartChatMessage(type) {
chat.innerHTML = ``;
isSpeaking = false;
}
/**重写函数 */
function isSpeakingStart(chatWithMagic, sendText) {
isSpeaking = true;
}
//重写
function isSpeakingFinish() {
isSpeaking = false;
}