Skip to content

Commit 61f410f

Browse files
committed
squash! common : add default embeddings presets
Update gte-small model to ggml-org/gte-small-Q8_0-GGUF.
1 parent e07000b commit 61f410f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common/arg.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2356,8 +2356,8 @@ common_params_context common_params_parser_init(common_params & params, llama_ex
23562356
{"--embd-gte-small-default"},
23572357
string_format("use default gte-small model (note: can download weights from the internet)"),
23582358
[](common_params & params) {
2359-
params.hf_repo = "ChristianAzinn/gte-small-gguf";
2360-
params.hf_file = "gte-small.Q8_0.gguf";
2359+
params.hf_repo = "ggml-org/gte-small-Q8_0-GGUF";
2360+
params.hf_file = "gte-small-q8_0.gguf";
23612361
params.pooling_type = LLAMA_POOLING_TYPE_NONE;
23622362
params.embd_normalize = 2;
23632363
params.n_ctx = 512;

0 commit comments

Comments
 (0)