mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-05 05:37:41 +08:00
21 lines
391 B
Go
21 lines
391 B
Go
package utils
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/pkoukk/tiktoken-go"
|
|
)
|
|
|
|
func CalcTokens(text string, model string) (int, error) {
|
|
encoding, ok := tiktoken.MODEL_TO_ENCODING[model]
|
|
if !ok {
|
|
encoding = "cl100k_base"
|
|
}
|
|
tke, err := tiktoken.GetEncoding(encoding)
|
|
if err != nil {
|
|
return 0, fmt.Errorf("getEncoding: %v", err)
|
|
}
|
|
|
|
token := tke.Encode(text, nil, nil)
|
|
return len(token), nil
|
|
}
|