llama_get_logits_ith method
Logits for the ith token. Equivalent to: llama_get_logits(ctx) + i*n_vocab
Implementation
ffi.Pointer<ffi.Float> llama_get_logits_ith(
ffi.Pointer<llama_context> ctx,
int i,
) {
return _llama_get_logits_ith(
ctx,
i,
);
}