llama_sample_token method

int llama_sample_token(
  1. Pointer<llama_context> ctx,
  2. Pointer<llama_token_data_array> candidates
)

@details Randomly selects a token from the candidates based on their probabilities.

Implementation

int llama_sample_token(
  ffi.Pointer<llama_context> ctx,
  ffi.Pointer<llama_token_data_array> candidates,
) {
  return _llama_sample_token(
    ctx,
    candidates,
  );
}