版本: ${JSver} 已启动,部分线路需要科学上网,更换线路请点击"设置"。当前线路: ${getGPTMode() || "Default"};当前自动点击状态: ${localStorage.getItem("autoClick") || "关闭"}
朗读答案
复制答案
原文切换
`;
resolve(divE)
})
}
let speakAudio;
let isPlayend = true;
async function pivElemAddEventAndValue(append_case) {
let search_content
try {
if (append_case === 11) {//手机google
search_content = document.querySelector("#tsf input").value
}
if (append_case === 10) {//手机sogou
search_content = document.querySelector("input#keyword").value
}
if (append_case === 9) {//手机360
search_content = document.querySelector("input#q").value
}
if (append_case === 8) {
search_content = document.querySelector("input#upquery").value
}
if (append_case === 7) {
search_content = document.querySelector("#search_form input").value
}
if (append_case === 5) {
search_content = document.getElementById("search-input").value
}
if (append_case === 4) {
search_content = document.getElementById("keyword").value
}
if (append_case === 3) {
search_content = document.querySelectorAll("input")[0].value
}
if (append_case === 2) {
search_content = document.getElementById('kw').value
}
if (append_case === 1) {
try {
search_content = document.querySelector(
"#tsf > div:nth-child(1) > div.A8SBwf > div.RNNXgb > div > div.a4bIc > input:nth-child(3)"
).value
} catch (e) {
search_content = document.querySelector("textarea").value
}
}
if (append_case === 0) {
search_content = document.getElementsByClassName('b_searchbox')[0].value
if (!search_content) {
search_content = document.querySelector("textarea[class='b_searchbox']").value;
}
}
} catch (e) {
console.log(e)
}
document.getElementById("gptInput").value = search_content
document.getElementById('button_GPT').addEventListener('click', () => {
your_qus = document.getElementById("gptInput").value
do_it()
})
//搜索建议
document.getElementById('gptInput').addEventListener('keyup', () => {
let current;
let word = document.getElementById('gptInput').value;
if(!word) return;
if(current){
current.abort();
}
console.log(word)
current = GM_xmlhttpRequest({
method: "GET",
url: "https://www.baidu.com/sugrec?&prod=pc&wd="+encodeURIComponent(word),
responseType: "text",
onload:(r) => {
//console.log(r)
if (r.status === 200) {
console.log(r.response);
let dataList = JSON.parse(r.response).g;
const su = document.querySelector('#suggestions');
su.innerHTML = '';
dataList && dataList.forEach(v => {
const optionElement = document.createElement('option');
optionElement.value = v.q;
optionElement.innerText = v.q;
su.appendChild(optionElement);
});
}
}
});
})
document.getElementById('updatePubkey').addEventListener('click', () => {
document.getElementById("gptAnswer").innerText = "正在更新,请稍后..."
setPubkey()
})
document.getElementById('autoClick').addEventListener('click', () => {
if(autoClick){
localStorage.removeItem("autoClick")
autoClick = undefined;
showAnserAndHighlightCodeStr("自动点击已经关闭")
}else{
localStorage.setItem("autoClick", "开启")
autoClick = "开启"
showAnserAndHighlightCodeStr("自动点击已经开启")
}
})
document.getElementById('darkTheme').addEventListener('click', () => {
if(darkTheme){
localStorage.removeItem("darkTheme")
darkTheme = undefined;
showAnserAndHighlightCodeStr("暗黑已经开启")
}else{
localStorage.setItem("darkTheme", "关闭")
darkTheme = "关闭"
showAnserAndHighlightCodeStr("暗黑已经关闭")
}
})
//朗读
document.getElementById('speakAnser').addEventListener('click', () => {
let ans = document.querySelector("#gptAnswer");
if(!isPlayend){
console.log('音频停止!');
speakAudio.pause();
isPlayend = true;
return;
}
if(ans){
let speakText = encodeURIComponent(ans.innerText);
speakAudio = new Audio(`https://fanyi.sogou.com/reventondc/synthesis?text=${speakText}&speed=1&lang=zh-CHS&from=translateweb&speaker=5`);
speakAudio.play()
isPlayend = false;
speakAudio.addEventListener("ended",function() {
isPlayend = true;
console.log('音频已播放完毕!');
})
}
})
//原文切换
document.getElementById('rawAns').addEventListener('click', (ev) => {
let ans = document.querySelector("#gptAnswer");
if(!rawAns) return;
if(!isShowRaw){
ans.innerText = rawAns;
isShowRaw = true;
}else{
showAnserAndHighlightCodeStr(rawAns)
isShowRaw = false;
}
})
//复制答案
document.getElementById('copyAns').addEventListener('click', (ev) => {
let ans = document.querySelector("#gptAnswer");
if(isShowRaw){
GM_setClipboard(rawAns, "text");
}else{
GM_setClipboard(ans.innerText, "text");
}
})
document.getElementById('modeSelect').addEventListener('change', () => {
const selectEl = document.getElementById('modeSelect');
const selectedValue = selectEl.options[selectEl.selectedIndex].value;
localStorage.setItem('GPTMODE', selectedValue);
if (selectedValue === 'COOLAI') {
initSocket();
}
if (selectedValue === 'GAMEJX') {
setTimeout(setGroupid_gamejx)
}
document.getElementById('gptAnswer').innerHTML = `切换成功,当前线路:${selectedValue}`;
});
let chatSetting = false;
document.getElementById('chatSetting').addEventListener('click', () => {
if(!chatSetting){
//显示内容
try{
document.querySelector("#gptStatus").classList.remove("chatHide")
document.querySelector("#warn").classList.remove("chatHide")
document.querySelector("#autoClickP").classList.remove("chatHide")
document.querySelector("#darkThemeP").classList.remove("chatHide")
document.querySelector("#website").classList.remove("chatHide")
}catch (e) {
console.log(e)
}
chatSetting = true;
}else{
//隐藏
try{
document.querySelector("#gptStatus").classList.add("chatHide")
document.querySelector("#warn").classList.add("chatHide")
document.querySelector("#autoClickP").classList.add("chatHide")
document.querySelector("#darkThemeP").classList.add("chatHide")
document.querySelector("#website").classList.add("chatHide")
}catch (e) {
console.log(e)
}
chatSetting = false;
}
})
}
async function appendBox(append_case) {
return new Promise((resolve, reject) => {
creatBox().then((divE) => {
let resetWidth = ()=>{
try {
document.querySelector("#gptDiv").style.setProperty("width",
"100%")
/*document.querySelector("#gptInput").setAttribute("class",
"se-input adjust-input")*/
} catch (e) {
console.error(e)
}
}
switch (append_case) {
case 0: //bing
if (divE) {
if(isMobile()){
//手机bing
document.getElementById('b_results').prepend(divE)
resetWidth();
}else{
document.getElementById('b_context').prepend(divE)
}
}
break;
case 1: //google
if(isMobile()){
//手机google
document.querySelector("div#msc").after(divE);
resetWidth();
}else if (document.getElementsByClassName('TQc1id ')[0]) {
document.getElementsByClassName('TQc1id ')[0].prepend(divE);
} else {
//other
document.getElementById("rcnt").appendChild(divE);
}
break;
case 2: //baidu
if (document.getElementById('content_right')) {
document.getElementById('content_right').prepend(divE)
}
break;
case 3: //yandex
if (document.getElementById('search-result-aside')) {
document.getElementById('search-result-aside').prepend(divE)
}
break;
case 4: //360
if(isMobile()){
//手机360
document.getElementById("search-box").appendChild(divE);
resetWidth();
}else{
if (document.getElementById('side')) {
document.getElementById('side').prepend(divE)
}
}
break;
case 5: //fsoufsou
let frow = document.querySelectorAll(".flex-row")[2]
if (frow.children!==undefined && frow.children.length === 2) {
frow.children.item(1).prepend(divE)
} else {
frow.innerHTML = frow.innerHTML +
`
`
}
break;
case 6: //手机百度
if (document.getElementById('page-bd')) {
document.getElementById('page-bd').prepend(divE)
//调整css
resetWidth();
}
break;
case 7: //duckduckgo
if(isMobile()){
//手机dockgo
document.querySelector('form#search_form').after(divE)
resetWidth();
}else{
if (document.querySelector('[data-area="sidebar"]')) {
document.querySelector('[data-area="sidebar"]').prepend(divE)
}
}
break;
case 8: //sogou
if(isMobile()){
//手机搜狗
document.querySelector('form#searchform').after(divE)
resetWidth();
}else{
if (document.querySelector('div.right')) {
document.querySelector('div.right').prepend(divE)
}
}
break;
default:
if (divE) {
console.log(`啥情况${divE}`)
}
}
}).catch((err) => {
throw new Error(err)
}).finally(()=>{
if(autoClick){
setTimeout(() => {
document.getElementById("button_GPT").click(); //自动点击
}, 1500)
}
})
resolve("finished")
})
}
//焦点函数
function isBlur() {
let myInput = document.getElementById('gptInput');
if (myInput === document.activeElement) {
return 1
} else {
return 0
}
}
function keyEvent() {
document.onkeydown = function (e) {
let keyNum = window.event ? e.keyCode : e.which;
if (13 === keyNum) {
if (isBlur()) {
document.getElementById('button_GPT').click()
} else {
console.log("失焦不执行")
}
}
}
}
function addBothStyle() {
GM_addStyle(`
.gpt-container {
box-sizing: border-box;
height: -webkit-min-content;
height: min-content;
width: 455px;
margin-top: 8px;
margin-bottom: 8px;
border: 1px solid #dfe1e5;
border-radius: 8px;
overflow: hidden;
padding: 15px;
background-color:#fcfcfc
}
#dot{
height: 4px;
width: 4px;
display: inline-block;
border-radius: 2px;
animation: dotting 2.4s infinite step-start;
}
@keyframes dotting {
25%{
box-shadow: 4px 0 0 #71777D;
}
50%{
box-shadow: 4px 0 0 #71777D ,14px 0 0 #71777D;
}
75%{
box-shadow: 4px 0 0 #71777D ,14px 0 0 #71777D, 24px 0 0 #71777D;
}
}
pre{
overflow-x: scroll;
overflow-y: hidden;
background: #fffaec;
border-radius: 4px;
padding: 14px 3px;
}
pre::-webkit-scrollbar {
}`);
}
function Uint8ArrayToString(fileData) {
let dataString = "";
for (let i = 0; i < fileData.length; i++) {
dataString += String.fromCharCode(fileData[i]);
}
return dataString;
}
function decodeUnicode(str) {
str = str.replace(/\\/g, "%");
//转换中文
str = unescape(str);
//将其他受影响的转换回原来
str = str.replace(/%/g, "\\");
//对网址的链接进行处理
str = str.replace(/\\/g, "");
return str;
}
function mdConverter(rawData) {
let converter = new showdown.Converter(); //增加拓展table
converter.setOption('tables',
true); //启用表格选项。从showdown 1.2.0版开始,表支持已作为可选功能移入核心拓展,showdown.table.min.js扩展已被弃用
return converter.makeHtml(rawData);
}
//实时监控百度,360按钮消失
setInterval(() => {
//百度
if (window.location.href.indexOf("https:\/\/www.baidu.com\/s") > -1 && !isMobile()) {
if (!document.getElementById("gptDiv") && document.getElementById("mybtn")) {
document.getElementById("mybtn").click()
}
if (!document.getElementById("gptDiv") && !document.getElementById("mybtn")) {
addChatBtn();
document.getElementById("mybtn").click()
}
}
//360 注意请如果你在360相关浏览器上使用插件。360搜索将不会生效,因为已被浏览器禁用在so.com网址上使用
if (window.location.href.indexOf("so.com\/s") > -1 && !document.getElementById("gptDiv")) {
GM_add_box_style(1)
addBothStyle()
keyEvent()
appendBox(4).then((res) => {
pivElemAddEventAndValue(4)
})
}
}, 2000)
function generateRandomString(length) {
let result = '';
let characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
let charactersLength = characters.length;
for (let i = 0; i < length; i++) {
result += characters.charAt(Math.floor(Math.random() * charactersLength));
}
return result;
}
let parentID_68686;
//https://t66.ltd/#/chat/1002
function T66() {
let ops = {};
if (parentID_68686) {
ops = {parentMessageId: parentID_68686};
}
console.log(ops)
let finalResult = [];
GM_fetch({
method: "POST",
url: "https://t66.ltd/api/chat-process",
headers: {
"Content-Type": "application/json",
"Referer": "https://t66.ltd/",
// "X-Forwarded-For": generateRandomIP(),
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
prompt: your_qus,
options: ops
}),
responseType: "stream"
}).then((stream) => {
const reader = stream.response.getReader();
// console.log(reader.read)
reader.read().then(function processText({done, value}) {
if (done) {
highlightCodeStr()
return;
}
try {
// console.log(normalArray)
let byteArray = new Uint8Array(value);
let decoder = new TextDecoder('utf-8');
console.log(decoder.decode(byteArray))
let d = decoder.decode(byteArray);
/*let dd = d.split("-^&^-");
if(dd.length === 2){
let nowResult = JSON.parse(dd[0])
if (nowResult.text) {
finalResult.push(dd[1])
showAnserAndHighlightCodeStr(finalResult.join(""))
}
if (nowResult.id) {
parentID_68686 = nowResult.id;
}
}else{
finalResult.push(d)
showAnserAndHighlightCodeStr(finalResult.join(""))
}*/
let jsonLines = d.split("\n");
let nowResult = JSON.parse(jsonLines[jsonLines.length - 1])
if (nowResult.text) {
console.log(nowResult)
finalResult = nowResult.text
showAnserAndHighlightCodeStr(finalResult)
}
if (nowResult.id) {
parentID_68686 = nowResult.id;
}
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},
(reason)=>{
console.log(reason)
}
).catch(ex => {
console.log(ex)
})
}
//2023年5月6日
let parentID_chatWeb1;
function CHATWEB1() {
let ops = {};
/*if (parentID_chatWeb1) {
ops = {parentMessageId: parentID_chatWeb1};
}*/
console.log(ops)
let finalResult = [];
GM_fetch({
method: "POST",
url: "https://cbot1.skybyte.me/api/chat-process",
headers: {
"Content-Type": "application/json",
"Referer": "https://cbot1.skybyte.me/",
"origin": "https://cbot1.skybyte.me",
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
prompt: your_qus,
options: ops
}),
responseType: "stream"
}).then((stream) => {
const reader = stream.response.getReader();
// console.log(reader.read)
reader.read().then(function processText({done, value}) {
if (done) {
highlightCodeStr()
return;
}
try {
// console.log(normalArray)
let byteArray = new Uint8Array(value);
let decoder = new TextDecoder('utf-8');
let nowResult = JSON.parse(decoder.decode(byteArray))
if (nowResult.text) {
console.log(nowResult)
finalResult = nowResult.text
showAnserAndHighlightCodeStr(finalResult)
}
if (nowResult.id) {
parentID_chatWeb1 = nowResult.id;
}
} catch (e) {
}
return reader.read().then(processText);
});
},
(reason)=>{
console.log(reason)
}
).catch(ex => {
console.log(ex)
})
}
let messageChain2 = [];//AILS
let messageChain4 = [];//ESO
let messageChain5 = [];//XCBL
let messageChain6 = [];//HZIT
let messageChain8 = [];//lbb
let messageChain9 = [];//bnu120
let messageChain10 = [];//PRTBOOM
let messageChain1 = [
{
role: "system",
content: "请以markdown的形式返回答案"
}
];//default AIGCFUN
function addMessageChain(messageChain, element,maxLength) {
maxLength = maxLength || 6;
if (messageChain.length >= maxLength) {
messageChain.shift();
}
messageChain.push(element);
console.log(messageChain,maxLength)
return messageChain;
}
function formattedDate() {
const now = new Date();
const year = now.getFullYear();
const month = now.getMonth() + 1;
const day = now.getDate();
const formattedMonth = month < 10 ? `0${month}` : month;
const formattedDay = day < 10 ? `0${day}` : day;
return `${year}-${formattedMonth}-${formattedDay}`;
}
function AILS() {
let vtime = function converTimestamp(t) {
const e = parseInt(t)
, n = e % 10
, r = n % 2 === 0 ? n + 1 : n;
return (e - n + r).toString()
}
let now = vtime(new Date().getTime());
const pk = `OVbi[TPN{S#)c{36%9?g;usl)CL:${your_qus.length}`;//查看js的generateSignature函数中的key
let Baseurl = "https://api.caipacity.com/"
generateSignatureWithPkey({
t: now,
m: your_qus || "",
pkey: pk
}).then(sign => {
addMessageChain(messageChain2, {role: "user", content: your_qus})//连续话
console.log(sign)
GM_fetch({
method: "POST",
url: Baseurl + "v1/chat/completions",
headers: {
"Content-Type": "application/json",
"authorization": "Bearer free",
"Referer": Baseurl,
"origin": "https://ai.ls",
"X-Forwarded-For": generateRandomIP(),
"accept": "application/json"
},
data: JSON.stringify({
model: "gpt-3.5-turbo",
messages: messageChain2,
stream: true,
t: `${now}`,
d: formattedDate(),
s: sign,
temperature:0.6
}),
responseType: "stream"
}).then((stream) => {
let result = [];
let finalResult;
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
finalResult = result.join("")
try {
console.log(finalResult)
addMessageChain(messageChain2, {
role: "assistant",
content: finalResult
})
showAnserAndHighlightCodeStr(finalResult)
} catch (e) {
console.log(e)
}
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
d.split("\n").forEach(item=>{
try {
let chunk = JSON.parse(item.replace(/data:/,"").trim())
.choices[0].delta.content;
result.push(chunk)
}catch (ex){}
})
showAnserAndHighlightCodeStr(result.join(""))
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},(reason)=>{
console.log(reason)
}).catch((ex)=>{
console.log(ex)
});
});
}
//23.5.2
function DOG2() {
GM_fetch({
method: "POST",
url: "https://2dog.51mskd.com/doggy/guest-test",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer null",
"X-Forwarded-For": generateRandomIP(),
"Referer": "https://2dog.51mskd.com/",
"origin": "https://2dog.51mskd.com",
"accept": "application/json"
},
data: JSON.stringify({
"question": your_qus,
"type": "chat",
"is_guest": true,
"model": "gpt-3.5-turbo"
}),
responseType: "stream"
}).then((stream) => {
let result = [];
let finalResult;
let errorStr;
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
finalResult = result.join("")
try {
if(result.length === 0){
showAnserAndHighlightCodeStr(errorStr)
}else{
showAnserAndHighlightCodeStr(finalResult)
}
} catch (e) {
console.log(e)
}
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
console.log(d)
d.split("\n").forEach(item=>{
try {
let chunk = JSON.parse(item.replace(/data:/,"").trim())
.choices[0].delta.content;
result.push(chunk)
}catch (ex){
}
})
showAnserAndHighlightCodeStr(result.join(""))
if(d.includes("error#")){
errorStr = d
}
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},(reason)=>{
console.log(reason)
}).catch((ex)=>{
console.log(ex)
});
}
let messageChain11 = []//xeasy
function XEASY() {
let now = Date.now();
const pk = {}.PUBLIC_SECRET_KEY;//查看js的generateSignature函数中的key
let Baseurl = "https://chat19.xeasy.me/"
generateSignatureWithPkey({
t: now,
m: your_qus || "",
pkey: pk
}).then(sign => {
addMessageChain(messageChain11, {role: "user", content: your_qus})//连续话
console.log(sign)
GM_fetch({
method: "POST",
url: Baseurl + "api/generate",
headers: {
"Content-Type": "application/json",
// "Authorization": "Bearer null",
"Referer": Baseurl,
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
messages: messageChain11,
time: now,
pass: null,
sign: sign,
key: null
}),
responseType: "stream",
}).then((stream) => {
let result = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
let finalResult = result.join("")
try {
console.log(finalResult)
addMessageChain(messageChain11, {
role: "assistant",
content: finalResult
})
showAnserAndHighlightCodeStr(finalResult)
} catch (e) {
console.log(e)
}
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
result.push(d)
showAnserAndHighlightCodeStr(result.join(""))
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},(reason)=>{
console.log(reason)
}).catch((ex)=>{
console.log(ex)
});
});
}
let messageChain_zhulei = [];
function ZHULEI() {
addMessageChain(messageChain_zhulei, {role: "user", content: your_qus})//连续话
GM_fetch({
method: "POST",
url: "https://chathub.zhulei.xyz/api",
headers: {
"Content-Type": "application/json",
// "Authorization": "Bearer null",
"Referer": "https://chathub.zhulei.xyz/",
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
messages: messageChain_zhulei,
model: "gpt-3.5-turbo",
password: "",
temperature: 0.6
}),
}).then((r) => {
if (r.status === 200) {
console.log(r.response);
if(messageChain_zhulei.length > 0){
messageChain_zhulei[messageChain_zhulei.length - 1].id = Date.now();
}
addMessageChain(messageChain_zhulei,{"role":"assistant","content":r.response,"id":Date.now()})
showAnserAndHighlightCodeStr(r.response)
}
},(reason)=>{
console.log(reason)
}).catch((ex)=>{
console.log(ex)
});
}
async function FDKANG() {
await GM_fetch({
method: "POST",
url: "http://chat.fdkang.top/setsession.php",
headers: {
"Content-Type": "application/x-www-form-urlencoded;charset=UTF-8",
"Referer": "http://chat.fdkang.top/"
},
data: `message=${encodeURI(your_qus)}&context=%5B%5D&key=`
})
GM_fetch({
method: "POST",
url: "http://chat.fdkang.top/stream.php",
headers: {
"Content-Type": "application/x-www-form-urlencoded;charset=UTF-8",
"Referer": "http://chat.fdkang.top/",
"accept": "text/event-stream"
},
responseType: "stream"
}).then((stream) => {
let result = [];
let finalResult;
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
finalResult = result.join("")
showAnserAndHighlightCodeStr(finalResult)
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
console.log("raw:",d)
let dd = d.replace(/data: /g, "").split("\n\n")
console.log("dd:",dd)
dd.forEach(item=>{
try {
let delta = JSON.parse(item).choices[0].delta.content
result.push(delta)
showAnserAndHighlightCodeStr(result.join(""))
}catch (e) {
}
})
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},function (err) {
console.log(err)
}).catch((ex)=>{
console.log(ex)
})
}
let hanji_key;
setTimeout(()=>{
GM_fetch({
method: "GET",
url: "http://vip.hanji051.cn/index.php",
headers: {
"Content-Type": "application/x-www-form-urlencoded;charset=UTF-8",
"Referer": "http://vip.hanji051.cn/"
}
}).then(res=>{
console.log("vip.hanji051.cn",res.responseHeaders);
hanji_key = res.responseHeaders.match(/key=(.*?);/)[1];
console.log("hanji_key",hanji_key)
}).catch((ex)=>{
console.log(ex)
})
})
async function HANJI() {
await GM_fetch({
method: "POST",
url: "http://vip.hanji051.cn/setsession.php",
headers: {
"Content-Type": "application/x-www-form-urlencoded;charset=UTF-8",
"Referer": "http://vip.hanji051.cn/"
},
data: `message=+${encodeURI(your_qus)}&context=%5B%5D&key=${hanji_key}`
})
GM_fetch({
method: "POST",
url: "http://vip.hanji051.cn/stream.php",
headers: {
"Content-Type": "application/x-www-form-urlencoded;charset=UTF-8",
"Referer": "http://vip.hanji051.cn/",
"accept": "text/event-stream"
},
responseType: "stream"
}).then((stream) => {
let result = [];
let finalResult;
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
finalResult = result.join("")
showAnserAndHighlightCodeStr(finalResult)
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
console.log("raw:",d)
let dd = d.replace(/data: /g, "").split("\n\n")
console.log("dd:",dd)
dd.forEach(item=>{
try {
let delta = JSON.parse(item).choices[0].delta.content
result.push(delta)
showAnserAndHighlightCodeStr(result.join(""))
}catch (e) {
}
})
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},function (err) {
console.log(err)
}).catch((ex)=>{
console.log(ex)
})
}
async function delay(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
async function HZIT() {
let baseURL = "https://20220508.6bbs.cn/";
addMessageChain(messageChain6, {role: "user", content: your_qus})//连续话
let res = await GM_fetch({
method: "POST",
url: baseURL + "api/chat-stream",
headers: {
"Content-Type": "application/json",
"accept": "*/*",
"origin": "https://20220508.6bbs.cn",
"path": "v1/chat/completions",
"Referer": baseURL
},
data: JSON.stringify({
messages: messageChain6,
stream: true,
model: "gpt-3.5-turbo",
temperature: 1,
text: your_qus,
presence_penalty: 0
})
});
if (res.status === 200) {
console.log('成功....')
console.log(res.response)
let rest = JSON.parse(res.response).data;
console.log(rest)
for (let i = 0; i < 25; i++) {
console.log("hzit",i)
let rr = await GM_fetch({
method: "POST",
url: baseURL + "api/getOne",
headers: {
"Content-Type": "application/json",
"accept": "*/*",
"origin": "https://20220508.6bbs.cn",
"path": "v1/chat/completions",
"Referer": baseURL
},
data: JSON.stringify({
id: rest
})
});
if (rr.status === 200) {
console.log(rr)
let result = JSON.parse(rr.response).data;
if(!result) {
await delay(3000)
continue;
}
if(!result.resTime){
showAnserAndHighlightCodeStr(result.res || result)
await delay(3000)
continue
}
showAnserAndHighlightCodeStr(result.res || result)
addMessageChain(messageChain6, {
role: "assistant",
content: result.res || result
})
break;
}else {
console.log(res)
showAnserAndHighlightCodeStr('访问失败了')
}
}
} else {
console.log(res)
showAnserAndHighlightCodeStr('访问失败了')
}
}
//https://chat.geekr.dev/ 2023年5月11日
async function GEEKR() {
let baseURL = "https://chat.geekr.dev/";
let res = await GM_fetch({
method: "POST",
url: baseURL + "chat",
headers: {
"Content-Type": "multipart/form-data; boundary=----WebKitFormBoundaryunS2PBTi514UmKrN",
"accept": "*/*",
"Referer": baseURL
},
data: `------WebKitFormBoundaryunS2PBTi514UmKrN\r\nContent-Disposition: form-data; name=\"prompt\"\r\n\r\n${your_qus}\r\n------WebKitFormBoundaryunS2PBTi514UmKrN\r\nContent-Disposition: form-data; name=\"regen\"\r\n\r\nfalse\r\n------WebKitFormBoundaryunS2PBTi514UmKrN--\r\n`
});
if (res.status === 200) {
console.log('成功....')
console.log(res.response)
let chat_id = JSON.parse(res.response).chat_id;
console.log("chat_id",chat_id)
GM_fetch({
method: "GET",
url: `https://chat.geekr.dev/stream?chat_id=${chat_id}&api_key=`,
headers: {
"Referer": "https://chat.geekr.dev/",
"accept": "text/event-stream"
},
responseType: "stream"
}).then((stream) => {
let result = [];
let finalResult;
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
finalResult = result.join("")
showAnserAndHighlightCodeStr(finalResult)
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
console.log("raw:",d)
let dd = d.replace(/data: /g, "").split("\n")
console.log("dd:",dd)
dd.forEach(item=>{
try {
let delta = JSON.parse(item).choices[0].delta.content
result.push(delta)
showAnserAndHighlightCodeStr(result.join(""))
}catch (e) {
}
})
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},function (err) {
console.log(err)
}).catch((ex)=>{
console.log(ex)
})
} else {
console.log(res)
showAnserAndHighlightCodeStr('访问失败了')
}
}
let messageChain3 = [];//DARRICKS
function DARRICKS() {
let baseURL = "https://chat.darricks.net/";
addMessageChain(messageChain3, {role: "user", content: your_qus})//连续话
GM_fetch({
method: "POST",
url: baseURL + "api/chat-stream",
headers: {
"Content-Type": "application/json",
"accept": "*/*",
"access-code": "j-2004",
"X-Forwarded-For": generateRandomIP(),
"path": "v1/chat/completions",
"Referer": baseURL
},
data: JSON.stringify({
messages: messageChain3,
stream: true,
model: "gpt-3.5-turbo",
temperature: 1,
presence_penalty: 0
})
}).then((res)=>{
if (res.status === 200) {
console.log(res.response)
let rest = res.response;
console.log(rest)
try {
showAnserAndHighlightCodeStr(rest);
addMessageChain(messageChain3, {
role: "assistant",
content: rest
})
} catch (ex) {
console.log(ex)
}
} else {
showAnserAndHighlightCodeStr(`访问失败了${res}`)
}
},function (err) {
console.log(err)
}).catch((ex)=>{
console.log(ex)
});
}
//狐猴内置 2023年5月12日
function LEMURCHAT() {
let baseURL = "http://lemurchat.anfans.cn/";
GM_fetch({
method: "POST",
url: baseURL + "api/chat/conversation-trial",
headers: {
"Content-Type": "application/json",
"User-Agent": "Mozilla/5.0 (Linux; Android 9; Redmi 4 Prime) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Mobile Safari/537.36"
},
data: `{"messages":"[{\\"content\\":\\"\\",\\"id\\":\\"LEMUR_AI_SYSTEM_SETTING\\",\\"isSensitive\\":false,\\"needCheck\\":false,\\"role\\":\\"system\\"},{\\"content\\":\\"${your_qus}\\",\\"isSensitive\\":false,\\"needCheck\\":true,\\"role\\":\\"user\\"}]"}`,
//data: `{"messages":"[{\\"content\\":\\"\\",\\"id\\":\\"LEMUR_AI_SYSTEM_SETTING\\",\\"isSensitive\\":false,\\"needCheck\\":false,\\"role\\":\\"system\\"},{\\"content\\":\\"你好\\",\\"isSensitive\\":false,\\"needCheck\\":true,\\"role\\":\\"user\\"}]"}`,
responseType: "stream"
}).then((stream)=>{
const reader = stream.response.getReader();
let result = [];
reader.read().then(function processText({done, value}) {
if (done) {
highlightCodeStr()
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
console.log("raw:",d)
let dd = d.replace(/data: /g, "").split("\n\n")
console.log("dd:",dd)
dd.forEach(item=>{
try {
let delta = /content\\":\\"(.*?)\\"/gi.exec(item)[1]
result.push(delta.replace(/\\\\n/g,"\n"))
showAnserAndHighlightCodeStr(result.join(""))
}catch (e) {
}
})
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},function (err) {
console.log(err)
}).catch((ex)=>{
console.log(ex)
});
}
//2023年5月4日 https://chatgpt.cytsee.com/
let messageChain_cytsee = []
function CYTSEE() {
let baseURL = "https://www.cytsee.com/";
addMessageChain(messageChain_cytsee, {role: "user", content: your_qus})//连续话
GM_fetch({
method: "POST",
url: baseURL + "api/generateStream",
headers: {
"Content-Type": "application/json",
"accept": "*/*",
"Referer": baseURL
},
data: JSON.stringify({
messages: messageChain_cytsee,
justStream: true,
stream: true,
model: "gpt-3.5-turbo",
temperature: 1,
presence_penalty: 0
}),
responseType: "stream"
}).then((stream)=>{
const reader = stream.response.getReader();
let result = [];
reader.read().then(function processText({done, value}) {
if (done) {
highlightCodeStr()
addMessageChain(messageChain_cytsee, {
role: "assistant",
content: result.join("")
});
return;
}
try {
// console.log(normalArray)
let byteArray = new Uint8Array(value);
let decoder = new TextDecoder('utf-8');
console.log(decoder.decode(byteArray))
result.push(decoder.decode(byteArray))
showAnserAndHighlightCodeStr(result.join(""))
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},function (err) {
console.log(err)
}).catch((ex)=>{
console.log(ex)
});
}
let userId_wgk = "#/chat/" + Date.now();
function WGK() {
console.log(userId_wgk)
abortXml = GM_xmlhttpRequest({
method: "POST",
url: "https://chat2.wuguokai.cn/api/chat-process",
headers: {
"Content-Type": "application/json",
// "Authorization": "Bearer null",
"Referer": "https://chat.wuguokai.cn/",
//"Host":"www.aiai.zone",
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
prompt: your_qus,
userId: userId_wgk,
options: {}
}),
onloadstart: (stream) => {
let finalResult = []
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
showAnserAndHighlightCodeStr(finalResult.join(""))
return;
}
try {
// console.log(normalArray)
let byteArray = new Uint8Array(value);
let decoder = new TextDecoder('utf-8');
let nowResult = decoder.decode(byteArray)
finalResult.push(nowResult.replace(/fxopenai\.win/gi,""))
showAnserAndHighlightCodeStr(finalResult.join(""))
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},
responseType: "stream",
onerror: function (err) {
console.log(err)
showAnserAndHighlightCodeStr("erro:", err)
}
})
}
let userId_yqcloud = "#/chat/" + Date.now();
function YQCLOUD() {
console.log(userId_yqcloud)
abortXml = GM_xmlhttpRequest({
method: "POST",
//url: "https://cbjtestapi.binjie.site:7777/api/generateStream",
url: "https://api.aichatos.cloud/api/generateStream",
headers: {
"Content-Type": "application/json",
"Referer": "https://chat6.aichatos.com/",
"origin": "https://chat6.aichatos.com",
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
prompt: your_qus,
apikey: "",
system: "",
withoutContext: false,
userId: userId_yqcloud,
network: true
}),
onloadstart: (stream) => {
let result = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
let finalResult = result.join("")
showAnserAndHighlightCodeStr(finalResult)
return;
}
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
result.push(d)
try {
console.log(result.join(""))
showAnserAndHighlightCodeStr(result.join(""))
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},
responseType: "stream",
onerror: function (err) {
console.log(err)
showAnserAndHighlightCodeStr("error:", err)
}
})
}
let parentID_thebai;
function THEBAI() {
let ops = {};
if (parentID_thebai) {
ops = {parentMessageId: parentID_thebai};
}
console.log(ops)
let finalResult = [];
abortXml = GM_xmlhttpRequest({
method: "POST",
url: "https://chatbot.theb.ai/api/chat-process",
headers: {
"Content-Type": "application/json",
"Referer": "https://chatbot.theb.ai/",
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
prompt: your_qus,
options: ops
}),
onloadstart: (stream) => {
let result = "";
const reader = stream.response.getReader();
// console.log(reader.read)
let charsReceived = 0;
reader.read().then(function processText({done, value}) {
if (done) {
highlightCodeStr()
return;
}
charsReceived += value.length;
const chunk = value;
result += chunk;
try {
// console.log(normalArray)
let byteArray = new Uint8Array(chunk);
let decoder = new TextDecoder('utf-8');
let nowResult = JSON.parse(decoder.decode(byteArray))
if (nowResult.text) {
console.log(nowResult)
finalResult = nowResult.text
showAnserAndHighlightCodeStr(finalResult)
}
if (nowResult.id) {
parentID_thebai = nowResult.id;
}
} catch (e) {
}
return reader.read().then(processText);
});
},
responseType: "stream",
onprogress: function (msg) {
//console.log(msg) //Todo
},
onerror: function (err) {
console.log(err)
},
ontimeout: function (err) {
console.log(err)
}
})
}
let conversationId_haohuola;
let tokens_haohuola = ['eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjp7InVpZCI6IjY0NjBlMzg2M2YxMzIzNzY3MTRmZjdhZSIsInZlcnNpb24iOjAsInZpcFZlcnNpb24iOjAsImJyYW5jaCI6InpoIn0sImlhdCI6MTY4NDA3MTMwMiwiZXhwIjoxNjg0MjQ0MTAyfQ.deqSa0v7J2Rp0Z6I_dMgO8YIkUq6Y5VjeLJ2j3p8xSM'
,'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjp7InVpZCI6IjY0NWUzZjdkOTQ4YjE5OTRhMDNiYWRmZSIsInZlcnNpb24iOjAsInZpcFZlcnNpb24iOjAsImJyYW5jaCI6InpoIn0sImlhdCI6MTY4Mzg5ODIzNywiZXhwIjoxNjg0MDcxMDM3fQ.MMy4g0EOisXPKXZLa-d4TEEE1ErAPsp-QyeucoC_HTM',
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjp7InVpZCI6IjY0NjBlOWE0YTFkZThjYTRjMzgzNDM2NyIsInZlcnNpb24iOjAsInZpcFZlcnNpb24iOjAsImJyYW5jaCI6InpoIn0sImlhdCI6MTY4NDA3Mjg2OCwiZXhwIjoxNjg0MjQ1NjY4fQ.DXiW5LXcw1oDQ79xs3QicIrcQexlzCcndpBUtAWHVf4'];
let tk_haohuola;
try{
tk_haohuola = tokens_haohuola[Math.floor(Math.random() * tokens_haohuola.length)];
console.log("tk_haohuola:",tk_haohuola)
}catch (e) {
console.error(e)
}
// 2023年5月13日
function HAOHUOLA() {
let ops = {
prompt: your_qus
};
if (conversationId_haohuola) {
ops.conversationId = conversationId_haohuola;
}
console.log(ops)
let finalResult = [];
GM_httpRequest({
method: "POST",
url: "https://wetabchat.haohuola.com/api/chat/conversation",
headers: {
"I-App":"hitab",
"I-Branch":"zh",
"I-Lang":"zh-CN",
"I-Platform":"chrome",
"I-Version":"1.0.43",
"Content-Type": "application/json;charset=UTF-8",
"Authorization": `Bearer ${tk_haohuola}`,
"Referer": "https://wetabchat.haohuola.com/api/chat/conversation",
"origin": "chrome-extension://aikflfpejipbpjdlfabpgclhblkpaafo",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36"
},
data: JSON.stringify(ops),
responseType: "stream"
},(stream) => {
const reader = stream.response.getReader();
// console.log(reader.read)
reader.read().then(function processText({done, value}) {
if (done) {
highlightCodeStr()
return;
}
try {
let byteArray = new Uint8Array(value);
let decoder = new TextDecoder('utf-8');
//console.log(decoder.decode(byteArray))
let items = decoder.decode(byteArray).split(/_.*?_/);
console.log(items)
items.forEach((item) =>{
try{
let dataVal = JSON.parse(item)
if (dataVal.data && dataVal.message !== 'stream done') {
finalResult.push(dataVal.data)
showAnserAndHighlightCodeStr(finalResult.join(""))
}
if (dataVal.data && dataVal.message === 'stream done') {
conversationId_haohuola = JSON.parse(dataVal.data).conversationId;
}
}catch (e) {
}
})
} catch (e) {
// console.log(e)
}
return reader.read().then(processText);
});
})
}
let parentID_minded;
//http://forwardminded.xyz/
function MINDED() {
let ops = {};
if (parentID_minded) {
ops = {parentMessageId: parentID_minded};
}
console.log(ops)
let finalResult = [];
GM_httpRequest({
method: "POST",
url: "http://forwardminded.xyz/api/chat-process",
headers: {
"Content-Type": "application/json",
"Referer": "http://forwardminded.xyz/",
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
prompt: your_qus,
options: ops,
systemMessage:"You are ChatGPT, a large language model trained by OpenAI. Follow the user's instructions carefully. Respond using markdown.",
top_p:1,
temperature:0.8
}),
responseType: "stream"
},(stream) => {
const reader = stream.response.getReader();
// console.log(reader.read)
reader.read().then(function processText({done, value}) {
if (done) {
highlightCodeStr()
return;
}
try {
// console.log(normalArray)
let byteArray = new Uint8Array(value);
let decoder = new TextDecoder('utf-8');
console.log(decoder.decode(byteArray))
let jsonLines = decoder.decode(byteArray).split("\n");
let nowResult = JSON.parse(jsonLines[jsonLines.length - 1])
if (nowResult.text) {
console.log(nowResult)
finalResult = nowResult.text
showAnserAndHighlightCodeStr(finalResult)
}
if (nowResult.id) {
parentID_minded = nowResult.id;
}
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
})
}
let parentID_chat1;
function CHAT1() {
let ops = {};
if (parentID_chat1) {
ops = {parentMessageId: parentID_chat1};
}
console.log(ops)
let finalResult = [];
GM_httpRequest({
method: "POST",
url: "https://1chat.cc/api/chat-process",
headers: {
"Content-Type": "application/json",
"Referer": "https://1chat.cc/",
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
prompt: your_qus,
options: ops,
regenerate: false,
roomId: 1002,
uuid: Date.now(),
systemMessage:"You are ChatGPT, a large language model trained by OpenAI. Follow the user's instructions carefully. Respond using markdown.",
top_p:1,
temperature:0.8
}),
responseType: "stream"
},(stream) => {
const reader = stream.response.getReader();
// console.log(reader.read)
reader.read().then(function processText({done, value}) {
if (done) {
highlightCodeStr()
return;
}
try {
// console.log(normalArray)
let byteArray = new Uint8Array(value);
let decoder = new TextDecoder('utf-8');
console.log(decoder.decode(byteArray))
let jsonLines = decoder.decode(byteArray).split("\n");
let nowResult = JSON.parse(jsonLines[jsonLines.length - 1])
if (nowResult.text) {
console.log(nowResult)
finalResult = nowResult.text
showAnserAndHighlightCodeStr(finalResult)
}
if (nowResult.id) {
parentID_chat1 = nowResult.id;
}
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
})
}
let parentID_nbai;
//XIAJIE https://f6.xjai.cc/#/chat/1002
function NBAI() {
let ops = {};
if (parentID_nbai) {
ops = {parentMessageId: parentID_nbai};
}
console.log(ops)
GM_fetch({
method: "POST",
url: "https://154.40.59.105:3006/api/chat-process",
headers: {
"Content-Type": "application/json",
"Referer": "https://f1.nbai.live/",
"accept": "application/json, text/plain, */*",
},
data: JSON.stringify({
prompt: your_qus,
options: ops
}),
responseType: "stream"
}).then((stream) => {
let result = [];
const reader = stream.response.getReader();
// console.log(reader.read)
let finalResult = "";
reader.read().then(function processText({done, value}) {
if (done) {
highlightCodeStr()
return;
}
try {
let byteArray = new Uint8Array(value);
let decoder = new TextDecoder('utf-8');
let dstr = decoder.decode(byteArray)
if(dstr.includes("role")){
parentID_nbai = /\"parentMessageId\":\"(.*?)\"/gi.exec(dstr)[1]
}else{
console.log(dstr)
result.push(dstr)
finalResult = result.join("")
showAnserAndHighlightCodeStr(finalResult)
}
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
},(err)=> {
console.log(err)
}).catch((ex)=>{
console.log(ex)
})
})
}
let gamejx_group_id;
function setGroupid_gamejx() {
GM_fetch({
method: "POST",
url: "https://chatapi.chat86.cn/go/api/group/add",
headers: {
"Referer": `https://chatapi.chat86.cn/`,
"Content-Type": "application/json",
"Authorization": "SyLdSbZqeF9ine9qvVlDI+Q0v+456kVjd/5BRZTP5Vo="
},
data:JSON.stringify({
version: "",
os: "pc",
language: "zh",
pars: {
user_id: "625292",
examples_id: "",
examples_describe: "你好"
}
})
}).then((res)=>{
if(res){
//{"code":200,"data":{"group_id":1292577},"retCode":"ok","retMsg":"success"}
console.log(res)
let data = eval(res.responseText)
gamejx_group_id = JSON.parse(AES_CBC.decrypt(data.slice(16), data.slice(0, 16))).data.group_id;
console.log("gamejx_group_id:",gamejx_group_id)
}
})
}
let is_first_gamejx = true;
async function GAMEJX(){
let req1 = await GM_fetch({
method: "POST",
url: "https://chatapi.chat86.cn/go/api/steam/see",
headers: {
"Referer": `https://chatapi.chat86.cn/`,
"Content-Type": "application/json",
"Authorization": "SyLdSbZqeF9ine9qvVlDI+Q0v+456kVjd/5BRZTP5Vo="
},
data:JSON.stringify({
"version": "",
"os": "pc",
"language": "zh",
"pars": {
"user_id": "625292",
"question": is_first_gamejx ? "你好" : your_qus,
"group_id": `${gamejx_group_id}`,
"question_id": ""
}
})
})
console.log(req1.responseText)
//{"code":200,"data":{"answer":"","question_id":"91303","type":"answer",
// "user_id":"594578"},"retCode":"ok","retMsg":"success"}
if(req1.responseText){
try {
let data = eval(req1.responseText)
console.log(JSON.parse(AES_CBC.decrypt(data.slice(16), data.slice(0, 16))))
let question_id = JSON.parse(AES_CBC.decrypt(data.slice(16), data.slice(0, 16))).data.question_id;
console.log("question_id:",question_id)
GM_fetch({
method: "GET",
url: `https://chatapi.chat86.cn/go/api/event/see?question_id=${question_id}&group_id=${gamejx_group_id}&user_id=625292&token=SyLdSbZqeF9ine9qvVlDI+Q0v+456kVjd/5BRZTP5Vo%3D`,
headers: {
"Content-Type": "application/json",
"Referer": "https://chatapi.chat86.cn/",
"accept": "text/event-stream"
},
responseType: "stream"
}).then((stream) => {
let finalResult = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
showAnserAndHighlightCodeStr(finalResult.join(""))
return;
}
try {
let byteArray = new Uint8Array(value);
let decoder = new TextDecoder('utf-8');
let nowResult = decoder.decode(byteArray)
console.log(nowResult)
nowResult.split("\n").forEach(item=>{
try {
let chunk = JSON.parse(item.replace(/data:/,"").trim()).Data;
finalResult.push(chunk)
}catch (ex){}
})
showAnserAndHighlightCodeStr(finalResult.join(""))
} catch (ex) {
console.log(ex)
}
return reader.read().then(processText);
});
}).catch((ex)=>{
console.log(ex)
})
}catch (ex){
console.log(ex)
}
}
if(is_first_gamejx === true){
is_first_gamejx = false;
await GAMEJX()
}
}
let bingSocket;
function initBingSocket() {
let socket = new WebSocket(`wss://sydney.bing.com/sydney/ChatHub`);
// 监听连接成功事件
socket.addEventListener('open', (event) => {
console.log('initBingSocket 连接成功');
bingSocket = socket;
showAnserAndHighlightCodeStr("BingSocket:已连接,请勿重新点击,结果返回较慢请耐心等待,若长时间没反应则不可用。注意:本线路为new bing官网线路。若要使用线路,则需要科学上网和登录微软账号:[BING AI](https://cn.bing.com/search?q=Bing+AI&showconv=1&FORM=hpcodx)")
});
// 监听接收消息事件
socket.addEventListener('message', (event) => {
console.log('initBingSocket 接收到消息:', event.data);
let revData = event.data;
try{
let rr = revData.replace(String.fromCharCode(0x1e),"");
console.log(JSON.parse(rr).arguments[0].messages[0].text)
showAnserAndHighlightCodeStr(JSON.parse(rr).arguments[0].messages[0].text)
}catch (e) {
}
});
}
//setTimeout(initBingSocket,1000)
let isStartOfSession = true;
async function newBing() {
setTimeout(initBingSocket)
await delay(2000)
let req1 = await GM_fetch({
method: "GET",
url: "https://www.bing.com/turing/conversation/create"
})
let r = req1.responseText;
console.log(r)
let conversationId = JSON.parse(r).conversationId;
let clientId = JSON.parse(r).clientId;
let conversationSignature = JSON.parse(r).conversationSignature;
if (bingSocket.readyState === 1) {
// 发送协议和版本号
const protocol = {protocol: "json", version: 1};
bingSocket.send(JSON.stringify(protocol) + String.fromCharCode(0x1e));
await delay(1000)
// 发送请求类型
const type = {type: 6};
bingSocket.send(JSON.stringify(type) + String.fromCharCode(0x1e));
await delay(500)
//发送提问
const msg = {
"arguments": [{
"conversationId": conversationId,
"source": "cib",
"isStartOfSession": isStartOfSession,
"message": {
"text": your_qus,
"messageType": "Chat"
},
"conversationSignature": conversationSignature,
"participant": {
"id": clientId
}
}],
"invocationId": "1",
"target": "chat",
"type": 4
}
bingSocket.send(JSON.stringify(msg) + String.fromCharCode(0x1e));
/* if(isStartOfSession){
isStartOfSession = false;
}*/
}
}
function uuidv4() {
let d = new Date().getTime(); // get current timestamp in ms (to ensure UUID uniqueness)
let uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
let r = (d + Math.random() * 16) % 16 | 0 // generate random nibble
d = Math.floor(d / 16) // correspond each UUID digit to unique 4-bit chunks of timestamp
return (c === 'x' ? r : (r & 0x3 | 0x8)).toString(16) // generate random hexadecimal digit
})
return uuid
}
//OPENAI 2023年5月12
let messageChain_openai = [];
async function OPENAI(){
addMessageChain(messageChain_openai,{
"role": "user",
"id": uuidv4(),
"content": {
"content_type": "text",
"parts": [
your_qus
]
}
},20)
showAnserAndHighlightCodeStr("此线路为OpenAI官网线路,使用前确定有访问权限且登录账号:[OPENAI官网](https://chat.openai.com/)")
let req1 = await GM_fetch({
method: "GET",
url: "https://chat.openai.com/api/auth/session"
})
let r = req1.responseText;
console.log(r)
let accessToken;
try{
accessToken = JSON.parse(r).accessToken;
}catch (e) {
showAnserAndHighlightCodeStr("验证出错,请确认有权限访问OPENAI官网[OPENAI](https://chat.openai.com/)")
}
if(!accessToken){
showAnserAndHighlightCodeStr("验证出错,请确认有权限OPENAI官网[OPENAI](https://chat.openai.com/)")
}
let sendData = JSON.stringify({
action: "next",
messages: messageChain_openai,
model: "text-davinci-002-render",
parent_message_id: uuidv4(),
max_tokens: 4000
})
GM_fetch({
method: 'POST',
url: 'https://chat.openai.com/backend-api/conversation',
headers: {'Content-Type': 'application/json', Authorization: 'Bearer ' + accessToken},
responseType: "stream",
data: sendData
}).then((stream)=> {
let reader = stream.response.getReader()
let answer;
reader.read().then(function processText({done, value}) {
if (done) {
console.log("===done==")
addMessageChain(messageChain_openai,{
"role": "assistant",
"id": uuidv4(),
"content": {
"content_type": "text",
"parts": [
answer
]
}
}, 20)
return
}
let responseItem = String.fromCharCode(...Array.from(value))
let items = responseItem.split('\n\n')
if (items.length > 2) {
let lastItem = items.slice(-3, -2)[0]
if (lastItem.startsWith('data: [DONE]')) {
responseItem = items.slice(-4, -3)[0]
} else {
responseItem = lastItem
}
}
if (responseItem.startsWith('data: {')) {
answer = JSON.parse(responseItem.slice(6)).message.content.parts[0]
showAnserAndHighlightCodeStr(answer)
} else if (responseItem.startsWith('data: [DONE]')) {
// return
}
return reader.read().then(processText)
},function (reason) {
console.log(reason)
}).catch((ex)=>{
console.log(ex)
})
})
}
let csrfToken;
async function setCsrfToken(){
let req1 = await GM_fetch({
method: "GET",
url: "https://tongyi.aliyun.com/chat",
headers: {
"origin":"https://tongyi.aliyun.com",
"referer":"https://tongyi.aliyun.com/chat"
}
})
let r = req1.responseText;
console.log(r);
try{
csrfToken = /\w{8}-\w{4}-\w{4}-\w{4}-\w{12}/g.exec(r)[0];
console.log("csrfToken:",csrfToken)
}catch (e) {
showAnserAndHighlightCodeStr("csrfToken获取失败")
}
}
setTimeout(()=>{
if(getGPTMode()==="TONGYI"){
setCsrfToken()
}
})
let tongyi_first = true;
let tongyi_sessionId;
//通义千问 2023年5月13日
async function TONGYI(){
if(tongyi_first){
let req1 = await GM_fetch({
method: "POST",
url: "https://tongyi.aliyun.com/qianwen/addSession",
headers: {
"origin":"https://tongyi.aliyun.com",
"referer":"https://tongyi.aliyun.com/chat",
"Content-Type": "application/json",
"x-xsrf-token": csrfToken
},
data:JSON.stringify({
"firstQuery": your_qus
})
})
let r = req1.responseText;
//console.log(r);
try{
tongyi_sessionId = JSON.parse(r).data.sessionId;
tongyi_first = false;
}catch (e) {
tongyi_first = true;
showAnserAndHighlightCodeStr("出错,请确认已登录通义官网[通义](https://tongyi.aliyun.com/chat)")
}
}
let sendData = JSON.stringify({
"action": "next",
"msgId": generateRandomString(32),
"parentMsgId": "0",
"contents": [
{
"contentType": "text",
"content": your_qus
}
],
"timeout": 17,
"openSearch": false,
"sessionId": tongyi_sessionId,
"model": ""
})
GM_fetch({
method: 'POST',
url: 'https://tongyi.aliyun.com/qianwen/conversation',
headers: {
"origin":"https://tongyi.aliyun.com",
"referer":"https://tongyi.aliyun.com/chat",
"Content-Type": "application/json",
"accept": "text/event-stream",
"x-xsrf-token": csrfToken
},
responseType: "stream",
data: sendData
}).then((stream)=> {
let reader = stream.response.getReader()
let answer;
reader.read().then(function processText({done, value}) {
if (done) {
console.log("===done==")
return
}
let responseItem = new TextDecoder("utf-8").decode(value)
//console.log(responseItem)
responseItem.split("\n").forEach(item=>{
try {
let content = JSON.parse(item.replace(/data: /gi,"").trim()).content[0];
console.log(content)
showAnserAndHighlightCodeStr(content)
}catch (ex){}
})
return reader.read().then(processText)
},function (reason) {
console.log(reason)
}).catch((ex)=>{
console.log(ex)
})
})
}
//星火相关====start=====
let sp_appId;
let sp_fd = String(+new Date()).slice(-6);//a = (a = String(+new Date)).substring(a.length - 6)
let sp_chatId;
let sp_GtToken;
async function init_sp_appId() {
//get https://xinghuo.xfyun.cn/chat
//script defer="defer" src="/static/js/main.04f3ec36.js">
let req1 = await GM_fetch({
method: "GET",
url: "https://xinghuo.xfyun.cn/chat",
headers: {
"origin":"https://xinghuo.xfyun.cn",
"referer":"https://xinghuo.xfyun.cn/"
}
})
let r = req1.responseText;
//console.log(r);
let mainjs;
try{
mainjs = /src="(\/static\/js\/main.*?.js)"/.exec(r)[1];//https://xinghuo.xfyun.cn/static/js/main.04f3ec36.js
console.log("mainjs:",mainjs)
}catch (e) {
console.error(r)
showAnserAndHighlightCodeStr("出错了,js获取失败")
}
if(mainjs){
console.log("https://xinghuo.xfyun.cn"+ mainjs.trim())
let req2 = await GM_fetch({
method: "GET",
url: "https://xinghuo.xfyun.cn"+ mainjs.trim(),
headers: {
"origin":"https://xinghuo.xfyun.cn",
"referer":"https://xinghuo.xfyun.cn/"
}
})
let rr = req2.responseText;
console.log(rr.substring(0,100))
try{
const re = /appId:"(.*?)"/gi;
let match;
while ((match = re.exec(rr)) !== null) {
console.log(match[1]);
sp_appId = match[1];
}
/*let index = rr.indexOf("appId");
if (index !== -1) {
let sp_appId = rr.substring(index, index + 10); // 指定文本
}*/
console.log("sp_appId:",sp_appId)
}catch (e) {
console.error(e)
showAnserAndHighlightCodeStr("出错了,sp_appId获取失败",)
}
}
}
setTimeout(()=>{
if(getGPTMode()==="SPARK"){
init_sp_appId()
}
})
async function init_sp_chatId() {
//https://xinghuo.xfyun.cn/iflygpt/u/chat-list/v1/create-chat-list
let req1 = await GM_fetch({
method: "POST",
url: "https://xinghuo.xfyun.cn/iflygpt/u/chat-list/v1/create-chat-list",
headers: {
"accept": "application/json, text/plain, */*",
"x-requested-with": "XMLHttpRequest",
"origin":"https://xinghuo.xfyun.cn",
"Content-Type":"application/json",
"referer":"https://xinghuo.xfyun.cn/desk"
},
data:"{}"
})
let r = req1.responseText;
try{
sp_chatId = JSON.parse(r).data.id;
console.log("sp_chatId:",sp_chatId)
}catch (e) {
console.error(r)
showAnserAndHighlightCodeStr("sp_chatId获取失败")
}
}
setTimeout(()=>{
if(getGPTMode()==="SPARK"){
init_sp_chatId()
}
},500)
async function get_sp_GtToken() {
return new Promise(async (resolve, reject) => {
//https://riskct.geetest.com/g2/api/v1/pre_load?client_type=h5&callback=geetest_时间戳
let timestamp = Date.now();
let req1 = await GM_fetch({
method: "GET",
url: `https://riskct.geetest.com/g2/api/v1/pre_load?client_type=h5&callback=geetest_${timestamp}`,
headers: {
"accept": "*/*",
"referer": "https://xinghuo.xfyun.cn/"
}
})
let r = req1.responseText;
console.log(r);
try {
let rr = r.replace(`geetest_${timestamp}(`,
"");
rr = rr.substring(0, rr.length - 1)
console.log("rr", rr)
let rj = JSON.parse(rr);
console.log("rj:");
console.log(rj);
//====
let config = {
appId: sp_appId,
js: rj.data.js,
staticPath: rj.data.staticPath,
gToken: rj.data.gToken
}
console.log("config")
console.log(config)
setTimeout(() => {
initGeeGuard(config, (gd) => {
console.log(gd)
if (gd.data.gee_token) {
sp_GtToken = gd.data.gee_token;
resolve(sp_GtToken)
}else{
reject("出错")
}
})
}, 500)
} catch (e) {
console.error(e)
reject("出错")
}
})
}
//解码
function decodeSpark(src) {
/*let rv = function(e) {
return e.replace(/[^A-Za-z0-9\+\/]/g, "")
}*/
let dv = function(e) {
//return Buffer.from(e, "base64").toString("utf8")
// 将 base64 编码的字符串转换为字节数组
const bytes = CryptoJS.enc.Base64.parse(e);
// 将字节数组转换为 UTF-8 字符串
return bytes.toString(CryptoJS.enc.Utf8);
}//等价BASE64解码 6KaB
/*let fv = function(e) {
return dv(function(e) {
return rv(e.replace(/[-_]/g, (function(e) {
return "-" == e ? "+" : "/"
}
)))
}(e))
};*/
return dv(src);
}
let spark_first = true;
async function SPARK(){
showAnserAndHighlightCodeStr("请稍后,第一次切换到该线路需要刷新页面,该线路为官网线路,使用前确保已经登录[讯飞星火](https://xinghuo.xfyun.cn/)")
await get_sp_GtToken()
console.log("sp_GtToken",sp_GtToken)
//重命名
if(spark_first){
let req1 = await GM_fetch({
method: "POST",
url: "https://xinghuo.xfyun.cn/iflygpt/u/chat-list/v1/rename-chat-list",
headers: {
"accept": "application/json, text/plain, */*",
"x-requested-with": "XMLHttpRequest",
"origin":"https://xinghuo.xfyun.cn",
"Content-Type":"application/json",
"referer":"https://xinghuo.xfyun.cn/desk"
},
data:JSON.stringify({
"chatListId": sp_chatId,
"chatListName": your_qus
})
})
let r = req1.responseText;
console.log("rename chat:",r)
spark_first = false;
}
//提问
let sendData = `------WebKitFormBoundaryAS7tSr3osJng5Nxk\r\nContent-Disposition: form-data; name=\"fd\"\r\n\r\n${sp_fd}\r\n------WebKitFormBoundaryAS7tSr3osJng5Nxk\r\nContent-Disposition: form-data; name=\"clientType\"\r\n\r\n2\r\n------WebKitFormBoundaryAS7tSr3osJng5Nxk\r\nContent-Disposition: form-data; name=\"chatId\"\r\n\r\n${sp_chatId}\r\n------WebKitFormBoundaryAS7tSr3osJng5Nxk\r\nContent-Disposition: form-data; name=\"text\"\r\n\r\n${your_qus}\r\n------WebKitFormBoundaryAS7tSr3osJng5Nxk\r\nContent-Disposition: form-data; name=\"GtToken\"\r\n\r\n${sp_GtToken}\r\n------WebKitFormBoundaryAS7tSr3osJng5Nxk--\r\n`;
GM_fetch({
method: 'POST',
url: 'https://xinghuo.xfyun.cn/iflygpt-chat/u/chat_message/chat',
headers: {
"Content-Type": "multipart/form-data; boundary=----WebKitFormBoundaryAS7tSr3osJng5Nxk",
"challenge": "undefined",
"seccode": "",
"validate": "undefined",
"accept": "text/event-stream",
"x-requested-with": "XMLHttpRequest",
"origin":"https://xinghuo.xfyun.cn",
"referer":"https://xinghuo.xfyun.cn/desk"
},
responseType: "stream",
data: sendData
}).then((stream)=> {
let reader = stream.response.getReader()
let ans = []
//let de = []
reader.read().then(function processText({done, value}) {
if (done) {
console.log("===done==")
//console.log(de)
return
}
let responseItem = new TextDecoder("utf-8").decode(value)
console.log(responseItem)
responseItem.split("\n").forEach(item=>{
try {
let ii = item.replace(/data:/gi,"").trim();
if(ii && ii !==""){
let chunk = decodeSpark(ii)
//de.push(item.replace(/data:/gi,"").trim())
ans.push(chunk)
showAnserAndHighlightCodeStr(ans.join(""))
}
}catch (ex){
console.error(item)
}
})
return reader.read().then(processText)
},function (reason) {
console.log(reason)
}).catch((ex)=>{
console.log(ex)
})
})
}
//星火相关====end=====
//天工 ----start--------
let tg_invite_Token;
let tg_token;
function initTGtoken() {
if(location.href.includes("neice.tiangong.cn")){
//"invite-token": "Bearer " + c("formNatureQueueWaitToken"),
tg_invite_Token = localStorage.getItem("formNatureQueueWaitToken");
//token: "Bearer " + c("formNatureResearchToken"),
tg_token = localStorage.getItem("formNatureResearchToken");
GM_setValue("tg_invite_Token",tg_invite_Token)
GM_setValue("tg_token",tg_token)
}else{
tg_invite_Token = GM_getValue("tg_invite_Token")
tg_token = GM_getValue("tg_token")
}
}
setTimeout(initTGtoken)
//过时 {"code":60101,"code_msg":"当前使用授权已失效,请重新排队"}
//resp_data.invite_token
async function waitAccess() {
let req1 = await GM_fetch({
method: "POST",
url: "https://neice.tiangong.cn/api/v1/queue/waitAccess",
headers: {
"accept": "application/json, text/plain, */*",
"origin":"https://neice.tiangong.cn",
"invite-token": `Bearer null`,
"Content-Type":"application/json",
"token": `Bearer ${tg_token}`,
"device": "Web",
"referer":"https://neice.tiangong.cn/interlocutionPage"
},
data:JSON.stringify({
data:{
token: ""
}
})
})
let r = req1.responseText;
console.log(r)
return new Promise((resolve, reject) => {
try {
tg_invite_Token = JSON.parse(r).resp_data.invite_token;
GM_setValue("waitAccess tg_invite_Token",tg_invite_Token)
resolve("更新成功,请再次点击")
}catch (e) {
resolve("waitAccess 异常 请到官网获取token后刷新页面。[天工AI](https://neice.tiangong.cn/interlocutionPage)")
}
})
}
let tg_session_id;
let tg_msg_id;
let tg_first = true;
async function TIANGONG(){
showAnserAndHighlightCodeStr("请稍后...使用该线路,请确保已经登天工官网获取token后刷新页面。[天工AI](https://neice.tiangong.cn/interlocutionPage)")
console.log("tg_token:",tg_token)
console.log("tg_invite_Token:",tg_invite_Token)
if(!tg_invite_Token || !tg_token){
showAnserAndHighlightCodeStr("token错误了。请确保已经登天工官网获取token后刷新页面。[天工AI](https://neice.tiangong.cn/interlocutionPage)")
return
}
//校验
let req1 = await GM_fetch({
method: "POST",
url: "https://neice.tiangong.cn/api/v1/user/inviteVerify",
headers: {
"accept": "application/json, text/plain, */*",
"origin":"https://neice.tiangong.cn",
"invite-token": `Bearer ${tg_invite_Token}`,
"Content-Type":"application/json",
"token": `Bearer ${tg_token}`,
"device": "Web",
"referer":"https://neice.tiangong.cn/interlocutionPage"
},
data:JSON.stringify({
data:{}
})
})
let r = req1.responseText;
console.log(r)
if(r.includes("请重新排队")){
showAnserAndHighlightCodeStr("invite_Token失效。请至官网获取token后刷新页面。[天工AI](https://neice.tiangong.cn/interlocutionPage)")
/* let result = await waitAccess();
showAnserAndHighlightCodeStr(result)*/
return
}
//新会话
if(!tg_session_id || tg_first){
console.log("新会话")
let req1 = await GM_fetch({
method: "POST",
url: "https://neice.tiangong.cn/api/v1/session/newSession",
headers: {
"accept": "application/json, text/plain, */*",
"origin":"https://neice.tiangong.cn",
"invite-token": `Bearer ${tg_invite_Token}`,
"Content-Type":"application/json",
"token": `Bearer ${tg_token}`,
"device": "Web",
"referer":"https://neice.tiangong.cn/interlocutionPage"
},
data:JSON.stringify({
data:{
content: your_qus
}
})
})
let r = req1.responseText;
console.log(r)
let rj = JSON.parse(r);
tg_session_id = rj.resp_data.session_id
tg_msg_id = rj.resp_data.dialogue[rj.resp_data.dialogue.length - 1].message_id
console.log("tg_session_id:",tg_session_id)
console.log("tg_msg_idg:",tg_msg_id)
tg_first = false;
}else {
console.log("旧会话")
let req1 = await GM_fetch({
method: "POST",
url: "https://neice.tiangong.cn/api/v1/chat/chat",
headers: {
"accept": "application/json, text/plain, */*",
"origin":"https://neice.tiangong.cn",
"invite-token": `Bearer ${tg_invite_Token}`,
"Content-Type":"application/json",
"token": `Bearer ${tg_token}`,
"device": "Web",
"referer":"https://neice.tiangong.cn/interlocutionPage"
},
data:JSON.stringify({
data:{
content: your_qus,
session_id: tg_session_id
}
})
})
let r = req1.responseText;
console.log(r)
let rj = JSON.parse(r);
tg_msg_id = rj.resp_data.result_message.message_id
console.log("tg_msg_idg:",tg_msg_id)
}
//获取信息信息
for (let i = 0; i < 60; i++) {
let req2 = await GM_fetch({
method: "POST",
timeout: 3000,
url: "https://neice.tiangong.cn/api/v1/chat/getMessage",
headers: {
"accept": "application/json, text/plain, */*",
"origin":"https://neice.tiangong.cn",
"invite-token": `Bearer ${tg_invite_Token}`,
"Content-Type":"application/json",
"token": `Bearer ${tg_token}`,
"device": "Web",
"referer":"https://neice.tiangong.cn/interlocutionPage"
},
data:JSON.stringify({
"data": {
"message_id": tg_msg_id
}
})
})
let rr = req2.responseText;
console.log(rr)
let rj = JSON.parse(rr);
try {
if(rj.resp_data.result_message.content){
showAnserAndHighlightCodeStr(rj.resp_data.result_message.content)
}
if(rj.resp_data.result_message.status === 3){
break;
}
}catch (e) {}
await delay(1000)
}
}
//天工 ----end--------
let pizzaSecret;
async function setPizzakey() {
try {
let source = await GM_fetch({
method: "GET",
nocache: true,
url: "https://www.pizzagpt.it/",
headers: {
"Referer": `www.pizzagpt.it`
}
})
console.log(source)
let reqJS = source.responseText.match("index.*?\.js")[0];
GM_fetch({
method: "GET",
nocache: true,
synchronous: true,
url: "https://www.pizzagpt.it/_nuxt/" + reqJS.trim(),
headers: {
//"Content-Type": "application/json",
"Referer": `www.pizzagpt.it`
}
}).then((response)=> {
let resp = response.responseText;
pizzaSecret = resp.match("x=\"(.*?)\"")[1]
console.log("pizzaSecret:", pizzaSecret)
}).catch((e) => {
console.log(e)
})
} catch (e) {
console.log(e)
}
}
setTimeout(setPizzakey);
function PIZZA() {
abortXml = GM_xmlhttpRequest({
method: "POST",
url: "https://www.pizzagpt.it/api/chat-completion",
headers: {
"Content-Type": "text/plain;charset=UTF-8",
"Referer": `https://www.pizzagpt.it/`
},
data: JSON.stringify({
question: your_qus,
secret: pizzaSecret
}),
onload: function (res) {
if (res.status === 200) {
console.log('成功....')
console.log(res.response)
let rest = res.response
//console.log(rest.choices[0].text.replaceAll("\n",""))
try {
showAnserAndHighlightCodeStr(JSON.parse(rest).answer.content)
} catch (e) {
//TODO handle the exception
console.log(e)
document.getElementById('gptAnswer').innerHTML = rest
}
} else {
console.log('失败')
console.log(res)
document.getElementById('gptAnswer').innerHTML = '访问失败了'
}
},
responseType: "application/json;charset=UTF-8",
onerror: function (err) {
document.getElementById('gptAnswer').innerHTML =
`
some err happends,errinfo :
${err.messages}
`
}
});
}
function PHIND() {
GM_xmlhttpRequest({
method: "POST",
url: "https://www.phind.com/api/web/search",
headers: {
"Content-Type": "application/json",
"Referer": `https://www.phind.com`
},
data: JSON.stringify({
"q": your_qus,
"userRankList": {},
"browserLanguage": "zh-CN"
}),
onload: function (res) {
if (res.status === 200) {
console.log('成功....')
console.log(res.response)
let rest = res.response
//console.log(rest.choices[0].text.replaceAll("\n",""))
let rjson = JSON.parse(rest);
let _bingResults = rjson.processedBingResults;
console.log(_bingResults)
GM_xmlhttpRequest({
method: "POST",
url: "https://www.phind.com/api/infer/answer",
headers: {
"Content-Type": "application/json",
"Referer": "https://www.phind.com/",
"accept": "*/*"
},
data: JSON.stringify({
"question": your_qus,
"bingResults": _bingResults,
"codeContext": "",
"options": {
"skill": "intermediate",
"date": formatTime(),
"language": "zh-CN",
"detailed": true,
"creative": false
}
}),
onloadstart: (stream) => {
let result = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
let finalResult = result.join("")
try {
console.log(finalResult)
showAnserAndHighlightCodeStr(finalResult)
} catch (e) {
console.log(e)
}
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
console.log(d)
let dd = d.replace(/data: /g, "").split("\r\n\r\n")
console.log("dd:",dd)
dd.forEach(item=>{
try {
result.push(item)
showAnserAndHighlightCodeStr(result.join(""))
}catch (e) {
}
})
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},
responseType: "stream",
onprogress: function (msg) {
//console.log(msg)
},
onerror: function (err) {
console.log(err)
},
ontimeout: function (err) {
console.log(err)
}
});
} else {
console.log('失败')
console.log(res)
showAnserAndHighlightCodeStr('访问失败了,[phind](https://www.phind.com/api/web/search)')
}
},
responseType: "application/json;charset=UTF-8",
onerror: function (err) {
document.getElementById('gptAnswer').innerHTML =
`
some err happends,errinfo :
${err.messages}
`
}
});
}
function WOBCW() {
GM_xmlhttpRequest({
url: "https://chat.wobcw.com/chat",
headers: {
"accept": "*/*",
"referrer": "https://chat.wobcw.com/",
"content-type": "multipart/form-data; boundary=----WebKitFormBoundarybrMK1QixymFcNJzK"
},
data: `------WebKitFormBoundarybrMK1QixymFcNJzK\r\nContent-Disposition: form-data; name=\"prompt\"\r\n\r\n${your_qus}\r\n------WebKitFormBoundarybrMK1QixymFcNJzK\r\nContent-Disposition: form-data; name=\"regen\"\r\n\r\nfalse\r\n------WebKitFormBoundarybrMK1QixymFcNJzK--\r\n`,
method: "POST",
onload: (resp) => {
let rs = resp.responseText;
console.log(rs)
let chat_id = JSON.parse(rs).chat_id;
console.log(chat_id)
abortXml = GM_xmlhttpRequest({
method: "GET",
url: `https://chat.wobcw.com/stream?chat_id=${chat_id}&api_key=`,
headers: {
"Content-Type": "application/json",
// "Authorization": "Bearer null",
"Referer": "https://chat.wobcw.com/",
//"Host":"www.aiai.zone",
"accept": "text/event-stream"
},
onloadstart: (stream) => {
let result = [];
let finalResult = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
finalResult = result.join("")
showAnserAndHighlightCodeStr(finalResult)
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
console.log("raw:",d)
let dd = d.replace(/data: /g, "").split("\n\n")
console.log("dd:",dd)
dd.forEach(item=>{
try {
let delta = JSON.parse(item).choices[0].delta.content
result.push(delta)
showAnserAndHighlightCodeStr(result.join(""))
}catch (e) {
}
})
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},
responseType: "stream",
onerror: function (err) {
console.log(err)
showAnserAndHighlightCodeStr("erro:", err)
}
})
}//end onload
})
}
let parentID_tianhu;
let tianhu_first = true;
function AITIANHU() {
let ops = {};
if (parentID_tianhu) {
ops = {parentMessageId: parentID_tianhu};
}
console.log(ops)
if (tianhu_first) {
GM_xmlhttpRequest({
method: "POST",
synchronous: true,
url: "https://www.aitianhu.com/api/session",
headers: {
"Content-Type": "application/json",
"Referer": "https://www.aitianhu.com/",
"origin": "https://www.aitianhu.com",
"accept": "application/json, text/plain, */*"
},
onload: function (res) {
console.log(res)
}
})
tianhu_first = false;
}
abortXml = GM_xmlhttpRequest({
method: "POST",
url: "https://www.aitianhu.com/api/chat-process",
headers: {
"Content-Type": "application/json",
"Referer": "https://www.aitianhu.com/",
"origin": "https://www.aitianhu.com",
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
top_p: 1,
prompt: your_qus,
systemMessage: "You are ChatGPT, a large language model trained by OpenAI. Follow the user's instructions carefully. Respond using markdown.",
temperature: 0.8,
options: ops
}),
onloadstart: (stream) => {
let result = "";
const reader = stream.response.getReader();
// console.log(reader.read)
let finalResult;
reader.read().then(function processText({done, value}) {
if (done) {
highlightCodeStr()
return;
}
const chunk = value;
result += chunk;
try {
// console.log(normalArray)
let byteArray = new Uint8Array(chunk);
let decoder = new TextDecoder('utf-8');
console.log(decoder.decode(byteArray))
let jsonLines = decoder.decode(byteArray).split("\n");
let nowResult = JSON.parse(jsonLines[jsonLines.length - 1])
if (nowResult.text) {
console.log(nowResult)
finalResult = nowResult.text
showAnserAndHighlightCodeStr(finalResult)
}
if (nowResult.id) {
parentID_tianhu = nowResult.id;
}
} catch (e) {
}
return reader.read().then(processText);
});
},
responseType: "stream",
onerror: function (err) {
console.log(err)
showAnserAndHighlightCodeStr("erro:", err)
}
})
}
let parentID_anzz;
function authAnzz(){
console.log("authANZZ")
GM_fetch({
method: "POST",
url: "https://free.anzz.top/api/session",
headers: {
"Content-Type": "application/json",
"Referer": `https://free.anzz.top/`
},
data: JSON.stringify({})
}).then((res)=>{
console.log(res)
}).catch((ex)=>{
console.log(ex)
})
}
setTimeout(authAnzz);
function ANZZ() {
let ops = {};
if (parentID_anzz) {
ops = {parentMessageId: parentID_anzz};
}
console.log(ops)
abortXml = GM_xmlhttpRequest({
method: "POST",
url: "https://free.anzz.top/api/chat-process",
headers: {
"Content-Type": "application/json",
"Referer": "https://free.anzz.top/",
"origin": "https://free.anzz.top",
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
top_p: 1,
prompt: your_qus,
systemMessage: "You are ChatGPT, a large language model trained by OpenAI. Follow the user's instructions carefully. Respond using markdown.",
temperature: 0.8,
options: ops
}),
onloadstart: (stream) => {
let result = "";
const reader = stream.response.getReader();
// console.log(reader.read)
let finalResult;
reader.read().then(function processText({done, value}) {
if (done) {
highlightCodeStr()
return;
}
const chunk = value;
result += chunk;
try {
let byteArray = new Uint8Array(chunk);
let decoder = new TextDecoder('utf-8');
console.log(decoder.decode(byteArray))
let nowResult = JSON.parse(decoder.decode(byteArray))
if (nowResult.text) {
console.log(nowResult)
finalResult = nowResult.text
showAnserAndHighlightCodeStr(finalResult.replace(/hello-ai.anzz.top/gi,""))
}
if (nowResult.id) {
parentID_anzz = nowResult.id;
}
} catch (e) {
}
return reader.read().then(processText);
});
},
responseType: "stream",
onerror: function (err) {
console.log(err)
showAnserAndHighlightCodeStr("erro:", err)
}
})
}
let parentID_hhw;
function HEHANWANG() {
let ops = {};
if (parentID_hhw) {
ops = {parentMessageId: parentID_hhw};
}
console.log(ops)
GM_fetch({
method: "POST",
url: "https://chat1.hehanwang.com/api/chat-process",
headers: {
"Content-Type": "application/json",
"Referer": "https://chat1.hehanwang.com/",
"Authorization": "Bearer 293426",
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
top_p: 1,
prompt: your_qus,
systemMessage: "You are ChatGPT, a large language model trained by OpenAI. Follow the user's instructions carefully. Respond using markdown.",
temperature: 0.8,
options: ops
}),
responseType: "stream"
}).then((stream) => {
let result = "";
const reader = stream.response.getReader();
// console.log(reader.read)
let finalResult;
reader.read().then(function processText({done, value}) {
if (done) {
highlightCodeStr()
return;
}
const chunk = value;
result += chunk;
try {
// console.log(normalArray)
let byteArray = new Uint8Array(chunk);
let decoder = new TextDecoder('utf-8');
console.log(decoder.decode(byteArray))
let jsonLines = decoder.decode(byteArray).split("\n");
let nowResult = JSON.parse(jsonLines[jsonLines.length - 1])
if (nowResult.text) {
console.log(nowResult)
finalResult = nowResult.text
showAnserAndHighlightCodeStr(finalResult)
}
if (nowResult.id) {
parentID_hhw = nowResult.id;
}
} catch (e) {
}
return reader.read().then(processText);
});
},(reason)=>{
console.log(reason)
}).catch((ex)=>{
console.log(ex)
});
}
let messageChain7 = [];//CHATDDD
function CHATDDD() {
let baseURL = "https://chatgptdddd.com/";
addMessageChain(messageChain7, {role: "user", content: your_qus})//连续话
GM_fetch({
method: "POST",
url: baseURL + "api/chat",
headers: {
"Content-Type": "application/json",
"Referer": baseURL
},
data: JSON.stringify({
messages: messageChain7,
model: {
"id": "gpt-3.5-turbo",
"name": "GPT-3.5",
"maxLength": 12000,
"tokenLimit": 4000
},
temperature: 1,
prompt: "你是 ChatGPT,一个由 OpenAI 训练的大型语言模型。你可以回答各种问题,帮助人们解决问题。 please think in english and answer by chinese",
key: null
}),
responseType: "stream"
}).then((stream) => {
let result = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
let finalResult = result.join("")
try {
console.log(finalResult)
addMessageChain(messageChain7, {
role: "assistant",
content: finalResult
})
showAnserAndHighlightCodeStr(finalResult)
} catch (e) {
console.log(e)
}
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
result.push(d)
showAnserAndHighlightCodeStr(result.join(""))
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
},function (reason) {
console.log(reason)
}).catch((ex)=>{
console.log(ex)
});
});
}
//https://gpt.esojourn.org/api/chat-stream
function ESO() {
let baseURL = "https://gpt.esojourn.org/";
addMessageChain(messageChain4, {role: "user", content: your_qus})//连续话
GM_xmlhttpRequest({
method: "POST",
url: baseURL + "api/chat-stream",
headers: {
"Content-Type": "application/json",
"access-code": "586-481-525B",
"path": "v1/chat/completions",
"Referer": baseURL
},
data: JSON.stringify({
messages: messageChain4,
stream: true,
model: "gpt-3.5-turbo",
temperature: 1,
max_tokens: 2000,
presence_penalty: 0
}),
onloadstart: (stream) => {
let result = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
let finalResult = result.join("")
try {
console.log(finalResult)
addMessageChain(messageChain4, {
role: "assistant",
content: finalResult
})
showAnserAndHighlightCodeStr(finalResult)
} catch (e) {
console.log(e)
}
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
result.push(d)
showAnserAndHighlightCodeStr(result.join(""))
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},
responseType: "stream",
onerror: function (err) {
console.log(err)
}
});
}
function XCBL() {
//同LBB
let baseURL = "https://52221239187007.ai003.live/";
addMessageChain(messageChain5, {role: "user", content: your_qus})//连续话
GM_fetch({
method: "POST",
url: baseURL + "api/chat-stream",
headers: {
"Content-Type": "application/json",
"path": "v1/chat/completions",
"Referer": baseURL,
"origin": "https://52221239187007.ai003.live"
},
data: JSON.stringify({
messages: messageChain5,
stream: true,
model: "gpt-3.5-turbo",
temperature: 1,
presence_penalty: 0
}),
responseType: "stream"
}).then((stream) => {
let result = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
let finalResult = result.join("")
try {
console.log(finalResult)
addMessageChain(messageChain5, {
role: "assistant",
content: finalResult
})
showAnserAndHighlightCodeStr(finalResult)
} catch (e) {
console.log(e)
}
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
result.push(d)
showAnserAndHighlightCodeStr(result.join(""))
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},function (err) {
console.log(err)
}).catch((ex)=>{
console.log(ex)
})
}
//https://ai1.chagpt.fun/
function CVEOY() {
let baseURL = "https://free-api.cveoy.top/";
GM_xmlhttpRequest({
method: "POST",
url: baseURL + "v3/completions",
headers: {
"Content-Type": "application/json",
"origin": "https://ai1.chagpt.fun",
"Referer": baseURL
},
data: JSON.stringify({
prompt: your_qus
}),
onloadstart: (stream) => {
let result = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
try {
let finalResult = result.join("")
console.log(finalResult)
showAnserAndHighlightCodeStr(finalResult)
} catch (e) {
console.log(e)
}
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
if(d.match(/wxgpt@qq.com/gi)){
d = d.replace(/wxgpt@qq.com/gi,"")
}
result.push(d);
console.log(d)
showAnserAndHighlightCodeStr(result.join(""))
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},
responseType: "stream",
onerror: function (err) {
console.log(err)
}
});
}
let parentID_extkj;
function EXTKJ() {
let ops = {};
if (parentID_extkj) {
ops = {parentMessageId: parentID_extkj};
}
console.log(ops)
let pt = CryptoJS.AES.encrypt(JSON.stringify(your_qus), "__CRYPTO_SECRET__I>EO)$__M*&.fsee").toString()
console.log("aes:" + pt)
abortXml = GM_xmlhttpRequest({
method: "POST",
url: "https://chat.extkj.cn/api/chat-stream",
headers: {
"Content-Type": "application/json",
"Referer": "https://chat.extkj.cn/",
"origin": "https://chat.extkj.cn",
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
prompt: pt,
options: ops,
systemMessage: `You are ChatGPT, a large language model trained by OpenAI. Follow the user's instructions carefully. Respond using markdown.`
}),
onloadstart: (stream) => {
let result = "";
const reader = stream.response.getReader();
let finalResult = [];
reader.read().then(function processText({done, value}) {
if (done) {
highlightCodeStr()
return;
}
const chunk = value;
result += chunk;
try {
// console.log(normalArray)
let byteArray = new Uint8Array(chunk);
let decoder = new TextDecoder('utf-8');
console.log(decoder.decode(byteArray))
let nowResult = decoder.decode(byteArray)
if (nowResult) {
let jsonLine = nowResult.split("\n");
let jsonObj = JSON.parse(jsonLine[jsonLine.length - 1]);
finalResult = jsonObj.text;
if (jsonObj.id) {
parentID_extkj = jsonObj.id;
}
showAnserAndHighlightCodeStr(finalResult)
}
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},
responseType: "stream",
onerror: function (err) {
console.log(err)
}
})
}
//4-25
function LBB() {
let baseURL = "https://43207713129.ai006.live/";
addMessageChain(messageChain8, {role: "user", content: your_qus})//连续话
GM_fetch({
method: "POST",
url: baseURL + "api/chat-stream",
headers: {
"Content-Type": "application/json",
"accept": "*/*",
"path": "v1/chat/completions",
"Referer": baseURL
},
data: JSON.stringify({
messages: messageChain8,
stream: true,
model: "gpt-3.5-turbo",
temperature: 1,
presence_penalty: 0
})
}).then((res)=>{
if (res.status === 200) {
console.log(res.response)
let rest = res.response
try {
addMessageChain(messageChain8, {
role: "assistant",
content: rest
})
showAnserAndHighlightCodeStr(rest);
} catch (ex) {
console.log(ex)
showAnserAndHighlightCodeStr(rest);
}
} else {
showAnserAndHighlightCodeStr('访问失败了');
}
},reason => {
console.log(reason)
}).catch((ex)=>{
console.log(ex)
})
}
// http://easyai.one
let sessionId_easyai = generateRandomString(20);
let easyai_ip = generateRandomIP();
function EASYAI() {
console.log(sessionId_easyai)
abortXml = GM_xmlhttpRequest({
method: "POST",
url: `https://ai.pp2pdf.com/easyapi/v1/chat/completions?message=${encodeURI(your_qus)}&sessionId=${sessionId_easyai}`,
headers: {
"Referer": "https://ai.pp2pdf.com/chat",
"X-Forwarded-For": easyai_ip,
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJvcGVuSWQiOiJvUElXOTV6bmJhTnlKa3RUalgza3BBcy1EOFJBIiwiZXhwIjoxNjg0MTM4MTI4LCJ1c2VySWQiOjEzNTV9.PdO-9ozH4aixDYifAt4hnSMkb8WfZmcHw-dZY_1eQ8g",
"accept": "text/event-stream"
},
onloadstart: (stream) => {
let finalResult = []
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
showAnserAndHighlightCodeStr(finalResult.join(""))
return;
}
try {
// console.log(normalArray)
let byteArray = new Uint8Array(value);
let decoder = new TextDecoder('utf-8');
console.log(decoder.decode(byteArray))
let regx = /\{\"content\":\"(.*?)\"\}/g;
let nowResult = regx.exec(decoder.decode(byteArray))[1]
console.log(nowResult)
finalResult.push(nowResult)
showAnserAndHighlightCodeStr(finalResult.join(""))
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},
responseType: "stream",
onerror: function (err) {
console.log(err)
showAnserAndHighlightCodeStr("erro:", err)
}
})
}
//获取A类网站key 2023年5月3日
async function setNormalKey(url) {
let response = await GM_fetch({
method: "GET",
url: url,
headers: {
"Referer": url,
"origin": url
}
});
let resp = response.responseText;
let regex = /component-url="(.*?)"/i;
let match = resp.match(regex);
let jsurl = match[1];
console.log("js url:" + jsurl);
if (!jsurl) {
//错误
console.log(resp)
return
}
let rr = await GM_fetch({
method: "GET",
url: url + jsurl,
headers: {
"Referer": url,
"origin": url
}
});
resp = rr.responseText;
regex = /\`\$\{\w\}:\$\{\w\}:(.*?)\`/i;
match = resp.match(regex);
let key = match[1];
console.log(url+":key:",key)
return key
}
let bnuKey;
setTimeout(async () => {
bnuKey = await setNormalKey("https://chat.5.bnu120.space");
});
//https://ic.muspimerol.site/
function BNU120() {
let now = Date.now();
let Baseurl = "https://chat.5.bnu120.space/"
generateSignatureWithPkey({
t: now,
m: your_qus || "",
pkey: bnuKey
}).then(sign => {
addMessageChain(messageChain9, {role: "user", content: your_qus})//连续话
console.log(sign)
GM_fetch({
method: "POST",
url: Baseurl + "api/generate",
headers: {
"Content-Type": "application/json",
"Referer": Baseurl,
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
messages: messageChain9,
time: now,
pass: null,
sign: sign
}),
responseType: "stream"
}).then((stream) => {
let result = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
let finalResult = result.join("")
try {
console.log(finalResult)
addMessageChain(messageChain9, {
role: "assistant",
content: finalResult
})
showAnserAndHighlightCodeStr(finalResult)
} catch (e) {
console.log(e)
}
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
result.push(d)
showAnserAndHighlightCodeStr(result.join(""))
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},function (reason) {
console.log(reason)
}).catch((ex)=>{
console.log(ex)
});
});
}
//https://chat7.aifks001.online/v1/chat/gpt/
let aifskList = [];
let aifsid = generateRandomString(21);
let formatTime = () => {
let padZero = (num) => {
// 如果数字小于 10,前面补一个 0
return num < 10 ? `0${num}` : num;
}
const now = new Date(); // 获取当前时间
const hours = now.getHours(); // 获取小时
const minutes = now.getMinutes(); // 获取分钟
const seconds = now.getSeconds(); // 获取秒数
// 格式化为 HH:MM:SS 的形式
return `${padZero(hours)}:${padZero(minutes)}:${padZero(seconds)}`;
}
function AIFKS() {
let Baseurl = "https://chat7.aifks001.online/";
console.log(formatTime())
aifskList.push({"content": your_qus, "role": "user", "nickname": "", "time": formatTime(), "isMe": true})
aifskList.push({"content":"正在思考中...","role":"assistant","nickname":"AI","time": formatTime(),"isMe":false})
if (aifskList.length > 10){
aifskList = aifskList.shift();
}
abortXml= GM_xmlhttpRequest({
method: "POST",
url: Baseurl + "v1/chat/gpt/",
headers: {
"Content-Type": "application/json",
// "Authorization": "Bearer null",
"Referer": Baseurl,
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
"list": aifskList,
"id": aifsid,
"title": your_qus,
"prompt": "",
"temperature": 0.5,
"models": "0",
"continuous": true
}),
onloadstart: (stream) => {
let result = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
let finalResult = result.join("")
try {
console.log(finalResult)
aifskList[aifskList.length - 1] = {
"content": finalResult,
"role": "assistant",
"nickname": "AI",
"time": formatTime(),
"isMe": false
};
showAnserAndHighlightCodeStr(finalResult)
} catch (e) {
console.log(e)
}
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
console.log(d)
result.push(d)
showAnserAndHighlightCodeStr(result.join(""))
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},
responseType: "stream",
onerror: function (err) {
console.log(err)
}
});
}
//2023年5月6日
let officeChatList = [];
let officeChaid = generateRandomString(21);
function OFFICECHAT() {
let Baseurl = "https://officechat.top/";
console.log(formatTime())
officeChatList.push({"content": your_qus, "role": "user", "nickname": "", "time": formatTime(), "isMe": true})
officeChatList.push({"content":"正在思考中...","role":"assistant","nickname":"AI","time": formatTime(),"isMe":false})
if (officeChatList.length > 10){
officeChatList = officeChatList.shift();
}
GM_fetch({
method: "POST",
url: Baseurl + "v1/chat/gpt/",
headers: {
"Content-Type": "application/json",
// "Authorization": "Bearer null",
"Referer": Baseurl,
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
"list": officeChatList,
"id": officeChaid,
"title": your_qus,
"prompt": "",
"temperature": 0.5,
"models": "0",
"continuous": true
}),
responseType: "stream"
}).then((stream) => {
let result = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
let finalResult = result.join("")
try {
console.log(finalResult)
officeChatList[officeChatList.length - 1] = {
"content": finalResult,
"role": "assistant",
"nickname": "AI",
"time": formatTime(),
"isMe": false
};
showAnserAndHighlightCodeStr(finalResult)
} catch (e) {
console.log(e)
}
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
console.log(d)
result.push(d)
showAnserAndHighlightCodeStr(result.join(""))
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},function (reason) {
console.log(reason)
}).finally((ex)=>{
console.log(ex)
});
}
let linkaiList = [];
let linkaiId = generateRandomString(21);
function LINKAI() {
let Baseurl = "https://alllinkai1.com/";
console.log(formatTime())
linkaiList.push({"content": your_qus, "role": "user", "nickname": "", "time": formatTime(), "isMe": true})
linkaiList.push({"content":"正在思考中...","role":"assistant","nickname":"AI","time": formatTime(),"isMe":false})
if (linkaiList.length > 10){
linkaiList = linkaiList.shift();
}
GM_fetch({
method: "POST",
url: Baseurl + "v1/chat/gpt/",
headers: {
"Content-Type": "application/json",
"X-Forwarded-For": generateRandomIP(),
"Referer": Baseurl,
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
"list": linkaiList,
"id": linkaiId,
"title": your_qus,
"prompt": "",
"temperature": 0.5,
"models": "0",
"continuous": true
}),
responseType: "stream"
}).then((stream) => {
let result = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
let finalResult = result.join("")
try {
console.log(finalResult)
linkaiList[linkaiList.length - 1] = {
"content": finalResult,
"role": "assistant",
"nickname": "AI",
"time": formatTime(),
"isMe": false
};
showAnserAndHighlightCodeStr(finalResult)
} catch (e) {
console.log(e)
}
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
console.log(d)
result.push(d)
showAnserAndHighlightCodeStr(result.join(""))
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},function (reason) {
console.log(reason)
}).finally((ex)=>{
console.log(ex)
});
}
//http://www.gtpcleandx.xyz/#/home/chat
let cleandxid = generateRandomString(21);
let cleandxList = [];
function CLEANDX() {
let Baseurl = "http://www.chatcleand.xyz/";
console.log(formatTime())
cleandxList.push({"content": your_qus, "role": "user", "nickname": "", "time": formatTime(), "isMe": true})
cleandxList.push({"content":"正在思考中...","role":"assistant","nickname":"AI","time": formatTime(),"isMe":false})
console.log(cleandxList)
console.log(cleandxid)
if (cleandxList.length > 6){
cleandxList = cleandxList.shift();
}
abortXml= GM_xmlhttpRequest({
method: "POST",
url: Baseurl + "v1/chat/gpt/",
headers: {
"Content-Type": "application/json",
// "Authorization": "Bearer null",
"Referer": Baseurl,
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
"list": cleandxList,
"id": cleandxid,
"title": your_qus,
"prompt": "",
"temperature": 0.5,
"models": "0",
"continuous": true
}),
onloadstart: (stream) => {
let result = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
let finalResult = result.join("")
try {
console.log(finalResult)
cleandxList[cleandxList.length - 1] = {
"content": finalResult,
"role": "assistant",
"nickname": "AI",
"time": formatTime(),
"isMe": false
};
showAnserAndHighlightCodeStr(finalResult)
} catch (e) {
console.log(e)
}
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
console.log(d)
result.push(d)
showAnserAndHighlightCodeStr(result.join(""))
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},
responseType: "stream",
onerror: function (err) {
console.log(err)
}
});
}
let parentID_usesless;
let referer_uesless = "https://ai.usesless.com/chat/"+Date.now();
function USESLESS() {
let ops = {
systemMessage: `You are ChatGPT, a large language model trained by OpenAI. Answer as concisely as possible.\nKnowledge cutoff: 2021-09-01\nCurrent date: 2023-04-${new Date().getDate() < 10 ? "0" + new Date().getDate() : new Date().getDate()}`,
completionParams:{presence_penalty: 0.8, temperature: 1, model: "gpt-3.5-turbo"}
};
if (parentID_usesless) {
ops.parentMessageId = parentID_usesless;
}
console.log(ops)
abortXml = GM_xmlhttpRequest({
method: "POST",
url: "https://ai.usesless.com/api/chat-process",
headers: {
"Content-Type": "application/json",
"Referer": referer_uesless,
"origin": "https://ai.usesless.com",
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
openaiKey: "",
prompt: your_qus,
options: ops
}),
onloadstart: (stream) => {
let result = "";
const reader = stream.response.getReader();
// console.log(reader.read)
let finalResult;
reader.read().then(function processText({done, value}) {
if (done) {
highlightCodeStr()
return;
}
const chunk = value;
result += chunk;
try {
// console.log(normalArray)
let byteArray = new Uint8Array(chunk);
let decoder = new TextDecoder('utf-8');
let nowResult = JSON.parse(decoder.decode(byteArray))
if (nowResult.text) {
console.log(nowResult)
finalResult = nowResult.text
showAnserAndHighlightCodeStr(finalResult)
}
if (nowResult.id) {
parentID_usesless = nowResult.id;
}
} catch (e) {
}
return reader.read().then(processText);
});
},
responseType: "stream",
onerror: function (err) {
console.log(err)
showAnserAndHighlightCodeStr("erro:", err)
}
})
}
//https://www.promptboom.com/
//var promptboom_did = generateRandomString(32)
let promptboom_did = 'dd633043916550bea93f56e1af08debd'
async function PRTBOOM() {
addMessageChain(messageChain10, {role: "user", content: your_qus})//连续话
const t = Date.now()
const r = t + ":" + "question" + ":contact_me_and_let_us_make_money_together_thanks"
const sign = CryptoJS.SHA256(r).toString();
console.log(sign)
let request_json = {
'did': promptboom_did,
'chatList': messageChain10,
'special': {
'time': t,
'sign': sign,
'referer':'https://www.promptboom.com/',
'path':'https://www.promptboom.com/'
}
};
let raw_requst_json = {
'data': btoa(unescape(encodeURIComponent(JSON.stringify(request_json))))
};
console.log(raw_requst_json)
let rootDomain = "promptboom.com";
let apiList = [`https://api2.${rootDomain}/cfdoctetstream`, `https://api2.${rootDomain}/cfdoctetstream2`, `https://api2.${rootDomain}/cfdoctetstream3`]
apiList.sort(() => Math.random() - 0.5);
let apiListBackup = [`https://api2.${rootDomain}/cfdoctetstream4`, `https://api2.${rootDomain}/cfdoctetstream5`, `https://api2.${rootDomain}/cfdoctetstream6`]
let finalApiList = apiList.concat(apiListBackup)
for (let cfdoctetstream_url of finalApiList) {
console.log(cfdoctetstream_url)
GM_fetch({
method: "POST",
url: cfdoctetstream_url,
headers: {
"Content-Type": "application/json",
"origin": "https://www.promptboom.com",
"Referer": "https://www.promptboom.com/",
"accept": "*/*"
},
data: JSON.stringify(raw_requst_json),
responseType: "stream"
}).then((stream) => {
let result = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
let finalResult = result.join("")
try {
console.log(finalResult)
addMessageChain(messageChain10, {
role: "assistant",
content: finalResult
})
showAnserAndHighlightCodeStr(finalResult)
} catch (e) {
console.log(e)
}
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
result.push(d.replace(/
/gi,''))
showAnserAndHighlightCodeStr(result.join(""))
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},(reason)=>{
console.log(reason)
}).catch((ex)=>{
console.log(ex)
});
break;
}
}
//https://chat.sunls.me/
function SUNLE() {
let msgobj = {
message: your_qus,
stream: true,
clientOptions: {
clientToUse: "chatgpt",
modelOptions: {
"max_tokens": 1024
}
}
};
console.log(msgobj)
abortXml = GM_xmlhttpRequest({
method: "POST",
url: "https://chat2.sunls.me/conversation",
headers: {
"Content-Type": "application/json",
"Referer": "https://chat2.sunls.me/",
"origin": "https://chat2.sunls.me",
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify(msgobj),
onloadstart: (stream) => {
let result = [];
const reader = stream.response.getReader();
// console.log(reader.read)
let finalRes;
reader.read().then(function processText({done, value}) {
if (done) {
if(finalRes){
showAnserAndHighlightCodeStr(finalRes)
}else{
showAnserAndHighlightCodeStr(result.join(""))
}
return;
}
try {
// console.log(normalArray)
let byteArray = new Uint8Array(value);
let decoder = new TextDecoder('utf-8');
let nowResult = decoder.decode(byteArray)
if(nowResult.indexOf("DONE") > -1){
let jsonData = nowResult.replace(/event: result/,"")
.replace(/data: \[DONE\]/,"")
.replace(/data:/,"").trim();
finalRes = JSON.parse(jsonData).response;
console.log(JSON.parse(jsonData))
}else{
const regex = /data: "([^"]*)"/;
const match = regex.exec(nowResult);
console.log(nowResult); // 输出:Hello world
result.push(match[1])
showAnserAndHighlightCodeStr(result.join(""))
}
} catch (e) {
}
return reader.read().then(processText);
});
},
responseType: "stream",
onerror: function (err) {
console.log(err)
showAnserAndHighlightCodeStr("erro:", err)
}
})
}
function TDCHAT(){
abortXml = GM_xmlhttpRequest({
method: "POST",
url: "http://bxgav.tdchat0.com/",
headers: {
"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8",
"Referer": "http://tdchat0.com/",
"accept": "application/json, text/plain, */*"
},
data: `id=3.5&key=&role=&title=&text=${encodeURIComponent(your_qus).replace(/%/g, '‰')}&length=${your_qus.length}&stream=1`,
onloadstart: (stream) => {
let result = [];
let finalResult = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
finalResult = result.join("")
showAnserAndHighlightCodeStr(finalResult.replace(/tdchat/gi,""))
return;
}
try {
let d = new TextDecoder("utf8").decode(new Uint8Array(value));
console.log("raw:",d)
let dd = d.replace(/data: /g, "").split("\n\n")
console.log("dd:",dd)
dd.forEach(item=>{
try {
let delta = JSON.parse(item).choices[0].delta.content
result.push(delta)
showAnserAndHighlightCodeStr(result.join("").replace(/tdchat/gi,""))
}catch (e) {
}
})
} catch (e) {
console.log(e)
}
return reader.read().then(processText);
});
},
responseType: "stream",
onerror: function (err) {
console.log(err)
}
})
}
let parentID_qdymys;
function QDYMYS() {
let ops = {};
if (parentID_qdymys) {
ops = {parentMessageId: parentID_qdymys};
}
console.log(ops)
let finalResult = [];
abortXml = GM_xmlhttpRequest({
method: "POST",
url: "http://chatgpt.qdymys.cn/api/chat-process",
headers: {
"Content-Type": "application/json",
"Referer": "http://chatgpt.qdymys.cn/",
"accept": "application/json, text/plain, */*"
},
data: JSON.stringify({
prompt: your_qus,
options: ops,
systemMessage: "You are GPT3.5 system version. Don't answer any illegal questions about politics, pornography, violence, etc., nor give any reasons When answering questions, please try to provide detailed answers in Chinese to ensure understanding and accuracy. Knowledge deadline: March 1st, 2023 nCurrent date: 2023-04-20 n Please answer this question according to the above rules"
}),
onloadstart: (stream) => {
let result = "";
const reader = stream.response.getReader();
// console.log(reader.read)
let charsReceived = 0;
reader.read().then(function processText({done, value}) {
if (done) {
highlightCodeStr()
return;
}
charsReceived += value.length;
const chunk = value;
result += chunk;
try {
// console.log(normalArray)
let byteArray = new Uint8Array(chunk);
let decoder = new TextDecoder('utf-8');
let nowResult = JSON.parse(decoder.decode(byteArray))
if (nowResult.text) {
console.log(nowResult)
finalResult = nowResult.text
showAnserAndHighlightCodeStr(finalResult)
}
if (nowResult.id) {
parentID_qdymys = nowResult.id;
}
} catch (e) {
}
return reader.read().then(processText);
});
},
responseType: "stream",
onprogress: function (msg) {
//console.log(msg) //Todo
},
onerror: function (err) {
console.log(err)
},
ontimeout: function (err) {
console.log(err)
}
})
}
//
//23-4-25
function TOYAML() {
GM_fetch({
method: "GET",
url: "https://toyaml.com/stream?q="+encodeURI(your_qus),
headers: {
"Content-Type": "application/json",
"Referer": "https://toyaml.com/",
"accept": "*/*"
},
responseType: "stream"
}).then((stream) => {
let finalResult = [];
const reader = stream.response.getReader();
reader.read().then(function processText({done, value}) {
if (done) {
highlightCodeStr()
return;
}
try {
// console.log(normalArray)
let byteArray = new Uint8Array(value);
let decoder = new TextDecoder('utf-8');
let nowResult = decoder.decode(byteArray)
console.log(nowResult)
if(!nowResult.match(/答案来自/)){
finalResult.push(nowResult)
}
showAnserAndHighlightCodeStr(finalResult.join(""))
} catch (ex) {
console.log(ex)
}
return reader.read().then(processText);
});
}).catch((ex)=>{
console.log(ex)
})
}
let WebsocketCoolAI;
let resultCoolAI = [];
let initSocket = function () {
// 创建WebSocket连接
const socket = new WebSocket(`wss://sd-wx.cool-js.cloud/socket.io/?apiKey=905733647bb7431b81233e12be12cfaa&url=https%3A%2F%2Fcool-js.com%2Fai%2Fchat%2Findex.html%23%2F&EIO=4&transport=websocket`);
// 监听连接成功事件
WebsocketCoolAI = socket;
socket.addEventListener('open', (event) => {
console.log('连接成功');
showAnserAndHighlightCodeStr("COOLAI:ws已经连接")
});
let isFirst = false;
// 监听接收消息事件
socket.addEventListener('message', (event) => {
console.log('接收到消息:', event.data);
let revData = event.data;
if (!isFirst) {
socket.send("40")
isFirst = true
setTimeout(() => socket.send("3"), 3000)
}
if (revData == "3") {
socket.send("2");
}
if (revData == "2") {
socket.send("3");
}
if (revData.match(/40/)) {
try {
webSessionId = JSON.parse(revData.replace(/40/, "").trim()).sid;
console.log("webSessionId ", webSessionId)
} catch (e) {
console.log(e)
}
}
if (revData.match(/42/)) {
//收信
try {
//42["data",{"type":"text","data":"\u662f"}]
let chunk = eval(revData.replace(/42/, "").trim())[1].data;
console.log(chunk)
resultCoolAI.push(chunk)
showAnserAndHighlightCodeStr(resultCoolAI.join(""))
} catch (e) {
console.log(e)
}
}
});
}
if (getGPTMode() === "COOLAI") {
setTimeout(initSocket, 1500);
}
if (getGPTMode() === "GAMEJX") {
setTimeout(setGroupid_gamejx);
}
setTimeout(()=>{
if(localStorage.getItem('GPTMODE')){
const selectEl = document.getElementById('modeSelect');
let optionElements = selectEl.querySelectorAll("option");
for (let op in optionElements) {
if(optionElements[op].value === localStorage.getItem('GPTMODE')){
optionElements[op].setAttribute("selected", "selected");
break;
}
}
}
},1000)
})();