File tree Expand file tree Collapse file tree 3 files changed +8
-11
lines changed Expand file tree Collapse file tree 3 files changed +8
-11
lines changed Original file line number Diff line number Diff line change 1
- [submodule "vendor/llama.cpp "]
2
- path = vendor/llama.cpp
3
- url = https://github.com/ggerganov/llama.cpp.git
4
1
[submodule "ggllm.cpp "]
5
2
path = ggllm.cpp
6
3
url = https://github.com/cmp-nct/ggllm.cpp
Original file line number Diff line number Diff line change @@ -34,14 +34,14 @@ deploy.gh-docs:
34
34
mkdocs gh-deploy
35
35
36
36
clean :
37
- - cd vendor/llama .cpp && make clean
38
- - cd vendor/llama .cpp && rm libllama .so
37
+ - cd vendor/ggllm .cpp && make clean
38
+ - cd vendor/ggllm .cpp && rm ggllm .so
39
39
- rm -rf _skbuild
40
- - rm llama_cpp /* .so
41
- - rm llama_cpp /* .dylib
42
- - rm llama_cpp /* .metal
43
- - rm llama_cpp /* .dll
44
- - rm llama_cpp /* .lib
40
+ - rm falcon_cpp /* .so
41
+ - rm falcon_cpp /* .dylib
42
+ - rm falcon_cpp /* .metal
43
+ - rm falcon_cpp /* .dll
44
+ - rm falcon_cpp /* .lib
45
45
46
46
.PHONY : \
47
47
update \
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ class Settings(BaseSettings):
24
24
default = None ,
25
25
description = "The alias of the model to use for generating completions." ,
26
26
)
27
- n_ctx : int = Field (default = 2048 , ge = 1 , description = "The context size." )
27
+ n_ctx : int = Field (default = 8192 , ge = 1 , description = "The context size." )
28
28
n_gpu_layers : int = Field (
29
29
default = 0 ,
30
30
ge = 0 ,
You can’t perform that action at this time.
0 commit comments