change the default value of presystem to false

This commit is contained in:
josc146
2024-04-30 22:30:06 +08:00
parent 38b33a7030
commit aae7cfe1a2
3 changed files with 4 additions and 4 deletions

View File

@@ -57,7 +57,7 @@ class ChatCompletionBody(ModelConfigBody):
None, description="Internal system name", min_length=1
)
presystem: bool = Field(
True, description="Whether to insert default system prompt at the beginning"
False, description="Whether to insert default system prompt at the beginning"
)
model_config = {