diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2024-04-21 18:36:45 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-21 18:36:45 +0300 |
commit | 40f74e4d739e9250431cf339ae7588b28d8d0663 (patch) | |
tree | 6008461e7a055c9b86c39df7117b943f1ecc0598 /README.md | |
parent | b9cc76d87e3d7ae5900f19d4fe8f8976d0a35888 (diff) |
llama : add option to render special/control tokens (#6807)
* make : fix common dep on llama.h
* llama : add option to render special tokens
* readme : add API change notice
ggml-ci
* swift : fix build
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -10,6 +10,7 @@ Inference of Meta's [LLaMA](https://arxiv.org/abs/2302.13971) model (and others) ### Recent API changes +- [2024 Apr 21] `llama_token_to_piece` can now optionally render special tokens https://github.com/ggerganov/llama.cpp/pull/6807 - [2024 Apr 4] State and session file functions reorganized under `llama_state_*` https://github.com/ggerganov/llama.cpp/pull/6341 - [2024 Mar 26] Logits and embeddings API updated for compactness https://github.com/ggerganov/llama.cpp/pull/6122 - [2024 Mar 13] Add `llama_synchronize()` + `llama_context_params.n_ubatch` https://github.com/ggerganov/llama.cpp/pull/6017 |