diff options
author | Tekky <98614666+xtekky@users.noreply.github.com> | 2023-10-10 16:29:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-10 16:29:51 +0200 |
commit | 26cd71c7f48f7d8417d1f0348d2d1f89636e54d6 (patch) | |
tree | 891c9e1aaf8fec34bac0b4031cfeb1ca8354e402 /g4f/gui/client | |
parent | ~ | g4f `v-0.1.5.7` (diff) | |
parent | fix html (diff) | |
download | gpt4free-26cd71c7f48f7d8417d1f0348d2d1f89636e54d6.tar gpt4free-26cd71c7f48f7d8417d1f0348d2d1f89636e54d6.tar.gz gpt4free-26cd71c7f48f7d8417d1f0348d2d1f89636e54d6.tar.bz2 gpt4free-26cd71c7f48f7d8417d1f0348d2d1f89636e54d6.tar.lz gpt4free-26cd71c7f48f7d8417d1f0348d2d1f89636e54d6.tar.xz gpt4free-26cd71c7f48f7d8417d1f0348d2d1f89636e54d6.tar.zst gpt4free-26cd71c7f48f7d8417d1f0348d2d1f89636e54d6.zip |
Diffstat (limited to 'g4f/gui/client')
-rw-r--r-- | g4f/gui/client/html/index.html | 8 | ||||
-rw-r--r-- | g4f/gui/client/js/chat.v2.js | 6 |
2 files changed, 9 insertions, 5 deletions
diff --git a/g4f/gui/client/html/index.html b/g4f/gui/client/html/index.html index bb472706..7825cf8c 100644 --- a/g4f/gui/client/html/index.html +++ b/g4f/gui/client/html/index.html @@ -79,7 +79,7 @@ <span>Clear Conversations</span> </button> <div class="info"> - <i class="fa-brands fa-discord"></i> + <i class="fa-brands fa-telegram"></i> <span class="convo-title">telegram: <a href="https://t.me/g4f_official">@g4f_official</a><br> </span> </div> @@ -118,9 +118,13 @@ <div class="field"> <select name="model" id="model"> <option value="gpt-3.5-turbo" selected>gpt-3.5</option> - <option value="gpt-4">gpt-4</option> <option value="gpt-3.5-turbo-0613">gpt-3.5 fast</option> <option value="gpt-3.5-turbo-16k">gpt-3.5 16k</option> + <option value="gpt-3.5-turbo-16k-0613">gpt-3.5 16k fast</option> + <option value="gpt-4">gpt-4</option> + <option value="gpt-4-0613">gpt-4 fast</option> + <option value="gpt-4-32k">gpt-4 32k</option> + <option value="gpt-4-32k-0613">gpt-4 32k fast</option> </select> </div> <div class="field"> diff --git a/g4f/gui/client/js/chat.v2.js b/g4f/gui/client/js/chat.v2.js index e1faa6bb..24f2e45b 100644 --- a/g4f/gui/client/js/chat.v2.js +++ b/g4f/gui/client/js/chat.v2.js @@ -144,7 +144,7 @@ const ask_gpt = async (message) => { chunk = new TextDecoder().decode(value); - if (chunk.includes(`<form id="challenge-form" action="/backend-api/v2/conversation?`)) { + if (chunk.includes('<form id="challenge-form" action="/backend-api/v2/conversation?"')) { chunk = `cloudflare token expired, please refresh the page.`; } @@ -161,7 +161,7 @@ const ask_gpt = async (message) => { } // if text contains : - if (text.includes(`instead. Maintaining this website and API costs a lot of money`)) { + if (text.includes("instead. Maintaining this website and API costs a lot of money")) { document.getElementById(`gpt_${window.token}`).innerHTML = "An error occured, please reload / refresh cache and try again or use a differnet browser"; } @@ -547,7 +547,7 @@ colorThemes.forEach((themeOption) => { setTimeout(() => { ads_div = document.querySelector('.ads') - if (ads_div.getElementsByTagName("iframe").length == 0) { + if (ads_div != null && ads_div.getElementsByTagName("iframe").length == 0) { ads_div.removeChild(ads_div.querySelector('.sorry')) ads_div.innerHTML += ` |