docs: remove llama_sampler_accept reference in sampling sample usage (#16920)

commit 5fb5e24811 (llama : minor
sampling refactor (2) (#9386)) moved the llama_sampler_accept call
into llama_sampler_sample, but the sampling sample usage in llama.h
was forgotten to be updated accordingly.
This commit is contained in:
Adrian Lundberg
2025-11-02 10:28:37 +01:00
committed by GitHub
parent 7db35a7958
commit 76af40aaaa

View File

@@ -1111,8 +1111,6 @@ extern "C" {
// // sample from the logits of the last token in the batch
// const llama_token id = llama_sampler_sample(smpl, ctx, -1);
//
// // accepting the token updates the internal state of certain samplers (e.g. grammar, repetition, etc.)
// llama_sampler_accept(smpl, id);
// ...
// }
//