update value check for n_gpu_layers field (#826)
This commit is contained in:
parent
d989ac86e6
commit
a315128d66
1 changed files with 2 additions and 2 deletions
|
@ -48,8 +48,8 @@ class Settings(BaseSettings):
|
||||||
)
|
)
|
||||||
n_gpu_layers: int = Field(
|
n_gpu_layers: int = Field(
|
||||||
default=0,
|
default=0,
|
||||||
ge=0,
|
ge=-1,
|
||||||
description="The number of layers to put on the GPU. The rest will be on the CPU.",
|
description="The number of layers to put on the GPU. The rest will be on the CPU. Set -1 to move all to GPU.",
|
||||||
)
|
)
|
||||||
main_gpu: int = Field(
|
main_gpu: int = Field(
|
||||||
default=0,
|
default=0,
|
||||||
|
|
Loading…
Reference in a new issue