Skip to content

Commit 3fce944

Browse files
committed
Change default setting for logits_all from True to False.
1 parent 8044fd8 commit 3fce944

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llama_cpp/server/app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class Settings(BaseSettings):
7070
default=True, description="if true, use experimental mul_mat_q kernels"
7171
)
7272
f16_kv: bool = Field(default=True, description="Whether to use f16 key/value.")
73-
logits_all: bool = Field(default=True, description="Whether to return logits.")
73+
logits_all: bool = Field(default=False, description="Whether to return logits.")
7474
vocab_only: bool = Field(
7575
default=False, description="Whether to only return the vocabulary."
7676
)

0 commit comments

Comments
 (0)