llama_sample_temp method

void llama_sample_temp(
  1. Pointer<llama_context> ctx,
  2. Pointer<llama_token_data_array> candidates,
  3. double temp
)

Implementation

void llama_sample_temp(
  ffi.Pointer<llama_context> ctx,
  ffi.Pointer<llama_token_data_array> candidates,
  double temp,
) {
  return _llama_sample_temp(
    ctx,
    candidates,
    temp,
  );
}