llama_get_logits_ith method

Pointer<Float> llama_get_logits_ith(
  1. Pointer<llama_context> ctx,
  2. int i
)

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,
  );
}