You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: llama_cpp/server/settings.py
+4
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,10 @@ class ModelSettings(BaseSettings):
48
48
default=llama_cpp.llama_mlock_supported(),
49
49
description="Use mlock.",
50
50
)
51
+
kv_overrides: Optional[List[str]] =Field(
52
+
default=None,
53
+
description="List of model kv overrides in the format key=type:value where type is one of (bool, int, float). Valid true values are (true, TRUE, 1), otherwise false.",
54
+
)
51
55
# Context Params
52
56
seed: int=Field(
53
57
default=llama_cpp.LLAMA_DEFAULT_SEED, description="Random seed. -1 for random."
0 commit comments