| 12345678910111213 |
- package ratio_setting
- import "strings"
- const CompactModelSuffix = "-openai-compact"
- const CompactWildcardModelKey = "*" + CompactModelSuffix
- func WithCompactModelSuffix(modelName string) string {
- if strings.HasSuffix(modelName, CompactModelSuffix) {
- return modelName
- }
- return modelName + CompactModelSuffix
- }
|