Update and fix the model param of Deepseek (#5329)

This commit is contained in:
Richards Tu 2024-06-17 21:40:04 +08:00 committed by GitHub
parent 7305713b97
commit c163521b9e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ parameter_rules:
type: int
default: 4096
min: 1
max: 32000
max: 4096
help:
zh_Hans: 指定生成结果长度的上限。如果生成结果截断,可以调大该参数。
en_US: Specifies the upper limit on the length of generated results. If the generated results are truncated, you can increase this parameter.

View File

@ -7,7 +7,7 @@ features:
- agent-thought
model_properties:
mode: chat
context_size: 16000
context_size: 32000
parameter_rules:
- name: temperature
use_template: temperature
@ -22,5 +22,5 @@ parameter_rules:
- name: max_tokens
use_template: max_tokens
min: 1
max: 32000
max: 4096
default: 1024