# `WhisperCpp.Word`
[🔗](https://github.com/rubas/whisper_cpp/blob/v0.2.0/lib/whisper_cpp/word.ex#L1)

One word produced by `:word_timestamps`.

Times are absolute seconds within the input audio. `probability` is the
minimum per-token acoustic probability across the tokens that make up
this word (matching faster-whisper's per-word confidence reduction);
filter at e.g. `probability < 0.3` to flag low-confidence words.

# `t`

```elixir
@type t() :: %WhisperCpp.Word{
  end: float(),
  probability: float(),
  start: float(),
  text: String.t()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
