whisper_full_get_token_data method

whisper_token_data whisper_full_get_token_data(
  1. Pointer<whisper_context> ctx,
  2. int i_segment,
  3. int i_token
)

Get token data for the specified token in the specified segment This contains probabilities, timestamps, etc.

Implementation

whisper_token_data whisper_full_get_token_data(
  ffi.Pointer<whisper_context> ctx,
  int i_segment,
  int i_token,
) {
  return _whisper_full_get_token_data(
    ctx,
    i_segment,
    i_token,
  );
}