恢复渠道优先级可设置为负数

This commit is contained in:
CaIon 2023-12-26 23:49:43 +08:00
parent fd4ef086dc
commit 3c52a0991f
2 changed files with 4 additions and 4 deletions

View File

@ -194,12 +194,12 @@ func countTokenMessages(messages []Message, model string) (int, error) {
} }
func countTokenInput(input any, model string) int { func countTokenInput(input any, model string) int {
switch input.(type) { switch v := input.(type) {
case string: case string:
return countTokenText(input.(string), model) return countTokenText(v, model)
case []string: case []string:
text := "" text := ""
for _, s := range input.([]string) { for _, s := range v {
text += s text += s
} }
return countTokenText(text, model) return countTokenText(text, model)

View File

@ -168,7 +168,7 @@ const ChannelsTable = () => {
manageChannel(record.id, 'priority', record, value); manageChannel(record.id, 'priority', record, value);
}} }}
defaultValue={record.priority} defaultValue={record.priority}
min={0} min={-999}
/> />
</div> </div>
); );