1
0
mirror of https://github.com/lencx/ChatGPT.git synced 2024-10-01 01:06:13 -04:00

feat: GPT-4-Mobile

This commit is contained in:
lencx 2023-06-01 19:15:35 +08:00
parent 2b03c2ccde
commit d9c83fd084
2 changed files with 35 additions and 2 deletions

35
scripts/chat.js vendored
View File

@ -1,6 +1,6 @@
/** /**
* @name chat.js * @name chat.js
* @version 0.1.0 * @version 0.1.1
* @url https://github.com/lencx/ChatGPT/tree/main/scripts/chat.js * @url https://github.com/lencx/ChatGPT/tree/main/scripts/chat.js
*/ */
@ -25,6 +25,7 @@ function chatInit() {
}); });
document.addEventListener('visibilitychange', focusOnInput); document.addEventListener('visibilitychange', focusOnInput);
gpt4Mobile();
} }
function observeMutations(mutationsList) { function observeMutations(mutationsList) {
@ -115,6 +116,38 @@ function chatInit() {
}; };
} }
function gpt4Mobile() {
const originFetch = fetch;
window.fetch = (url, options) => {
return originFetch(url, options).then(async (response) => {
if (url.indexOf('/backend-api/models') === -1) {
return response;
}
const responseClone = response.clone();
let res = await responseClone.json();
res.models = res.models.map((m) => {
m.tags = m.tags.filter((t) => {
return t !== 'mobile';
});
if (m.slug === 'gpt-4-mobile') {
res.categories.push({
browsing_model: null,
category: 'gpt_4',
code_interpreter_model: null,
default_model: 'gpt-4-mobile',
human_category_name: 'GPT-4-Mobile',
plugins_model: null,
subscription_level: 'plus',
});
}
return m;
});
return new Response(JSON.stringify(res), response);
});
};
}
init(); init();
} }

View File

@ -6,7 +6,7 @@
"scripts": [ "scripts": [
{ {
"name": "core.js", "name": "core.js",
"version": "0.1.0" "version": "0.1.1"
}, },
{ {
"name": "cmd.js", "name": "cmd.js",