fixes issue with Claude <EOT> token disallowed

This commit is contained in:
nai-degen 2023-08-08 17:43:12 -05:00
parent c8d8e2e58f
commit 358339d48b
1 changed files with 1 additions and 1 deletions

View File

@ -22,6 +22,6 @@ export function getTokenCount(prompt: string, _model: string) {
return {
tokenizer: "@anthropic-ai/tokenizer",
token_count: encoder.encode(prompt).length,
token_count: encoder.encode(prompt.normalize("NFKC"), "all").length,
};
}