Last active
February 19, 2025 06:54
-
-
Save vikiboss/c06cac80af722cdecabb73d1a6d0ff99 to your computer and use it in GitHub Desktop.
QQ Music Free DeepSeek R1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// const prompt = '请扮演 QQ 群内拥有海量知识储备的全能问答机器人。' | |
const prompt = '哎呀,好无聊' | |
;(async () => { | |
async function putAiChat(message: string = '') { | |
const res = await fetch(`https://shu6.y.qq.com/cgi-bin/musicu.fcg`, { | |
method: 'POST', | |
body: JSON.stringify({ | |
comm: { qq: 10000 }, | |
req: { | |
module: 'music.aiAssistant.AiAssistantCtrlCenter', | |
method: 'AiAssist', | |
param: { userMsgText: message }, | |
}, | |
}), | |
}) | |
return res.json() | |
} | |
async function getAiChatMsg(msgID: string, lastChunkIdx = 0) { | |
const res = await fetch(`https://shu6.y.qq.com/cgi-bin/musicu.fcg`, { | |
method: 'POST', | |
body: JSON.stringify({ | |
comm: { qq: 10000 }, | |
req: { | |
module: 'music.aiAssistant.AiAssistantCtrlCenter', | |
method: 'PollMessageChunk', | |
param: { msgID, lastChunkIdx }, | |
}, | |
}), | |
}) | |
return res.json() | |
} | |
const aiChatInfo = await putAiChat(prompt) | |
const msgId = aiChatInfo?.req?.data.respMsg.msgId | |
console.log(msgId) | |
let chunkIdx = 0 | |
let emptyTimes = 0 | |
while (true) { | |
const data = await getAiChatMsg(msgId, chunkIdx) | |
const isLastChunk = data?.req?.data?.respMsg?.[0]?.isLastChunk | |
chunkIdx = data?.req?.data?.respMsg?.[0]?.chunkIdx | |
const msg = data?.req?.data?.respMsg?.[0]?.text | |
console.log(msg || JSON.stringify(data)) | |
if (!msg) { | |
chunkIdx = 0 | |
emptyTimes++ | |
} | |
if (isLastChunk || emptyTimes > 3) break | |
} | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment