fix: CountTokenInput

This commit is contained in:
CaIon 2024-03-26 18:49:53 +08:00
parent 06f1e34efc
commit 4a28a66c51

View File

@ -208,7 +208,7 @@ func CountTokenInput(input any, model string, check bool) (int, error, bool) {
}
return CountTokenText(text, model, check)
}
return 0, nil, false
return CountTokenInput(fmt.Sprintf("%v", input), model, check)
}
func CountAudioToken(text string, model string, check bool) (int, error, bool) {