fix: max_tokens of qwen-plus & qwen-plus-chat (#5480)

This commit is contained in:
crazywoola 2024-06-21 16:49:33 +08:00 committed by GitHub
parent 95c882934e
commit 91d38a535f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -22,9 +22,9 @@ parameter_rules:
- name: max_tokens
use_template: max_tokens
type: int
default: 1500
default: 2000
min: 1
max: 1500
max: 2000
help:
zh_Hans: 用于指定模型在生成内容时token的最大数量它定义了生成的上限但不保证每次都会生成到这个数量。
en_US: It is used to specify the maximum number of tokens when the model generates content. It defines the upper limit of generation, but does not guarantee that this number will be generated every time.

View File

@ -20,9 +20,9 @@ parameter_rules:
- name: max_tokens
use_template: max_tokens
type: int
default: 1500
default: 2000
min: 1
max: 1500
max: 2000
help:
zh_Hans: 用于指定模型在生成内容时token的最大数量它定义了生成的上限但不保证每次都会生成到这个数量。
en_US: It is used to specify the maximum number of tokens when the model generates content. It defines the upper limit of generation, but does not guarantee that this number will be generated every time.