summaryrefslogtreecommitdiffstats
path: root/g4f/gui/client/static/js/chat.v1.js
diff options
context:
space:
mode:
authorPD <56485898+pratham-darooka@users.noreply.github.com>2024-04-19 09:27:33 +0200
committerGitHub <noreply@github.com>2024-04-19 09:27:33 +0200
commit5fd118f3c9d3d3a932695a3b413d8926d8ad58c0 (patch)
treee9e13603587cea196e672ff32453ea0936ed1a8c /g4f/gui/client/static/js/chat.v1.js
parentMerge pull request #1854 from hlohaus/nem (diff)
downloadgpt4free-5fd118f3c9d3d3a932695a3b413d8926d8ad58c0.tar
gpt4free-5fd118f3c9d3d3a932695a3b413d8926d8ad58c0.tar.gz
gpt4free-5fd118f3c9d3d3a932695a3b413d8926d8ad58c0.tar.bz2
gpt4free-5fd118f3c9d3d3a932695a3b413d8926d8ad58c0.tar.lz
gpt4free-5fd118f3c9d3d3a932695a3b413d8926d8ad58c0.tar.xz
gpt4free-5fd118f3c9d3d3a932695a3b413d8926d8ad58c0.tar.zst
gpt4free-5fd118f3c9d3d3a932695a3b413d8926d8ad58c0.zip
Diffstat (limited to '')
-rw-r--r--g4f/gui/client/static/js/chat.v1.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/g4f/gui/client/static/js/chat.v1.js b/g4f/gui/client/static/js/chat.v1.js
index a17be16e..39027260 100644
--- a/g4f/gui/client/static/js/chat.v1.js
+++ b/g4f/gui/client/static/js/chat.v1.js
@@ -926,7 +926,7 @@ colorThemes.forEach((themeOption) => {
function count_tokens(model, text) {
if (model) {
if (window.llamaTokenizer)
- if (model.startsWith("llama2") || model.startsWith("codellama")) {
+ if (model.startsWith("llama") || model.startsWith("codellama")) {
return llamaTokenizer.encode(text).length;
}
if (window.mistralTokenizer)