From 4e379017e6f91d6da8963af87002fb97a709e79e Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Mon, 2 Sep 2024 18:32:11 +0300 Subject: [PATCH] llama : fix comment --- include/llama.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llama.h b/include/llama.h index 92e81f297..18916cde2 100644 --- a/include/llama.h +++ b/include/llama.h @@ -471,7 +471,7 @@ extern "C" { LLAMA_API enum llama_vocab_type llama_get_vocab_type (const struct llama_model * model); LLAMA_API enum llama_rope_type llama_get_rope_type (const struct llama_model * model); - // DEPRECATED: use the API above + // OLD API (use the new API above: https://github.com/ggerganov/llama.cpp/pull/9270) //LLAMA_API enum llama_pooling_type llama_pooling_type(const struct llama_context * ctx); //LLAMA_API enum llama_vocab_type llama_vocab_type (const struct llama_model * model); //LLAMA_API enum llama_rope_type llama_rope_type (const struct llama_model * model);