Interface LogprobsResultTopCandidates

A list of the top candidate tokens and their log probabilities at each decoding step. This can be used to see what other tokens the model considered.

interface LogprobsResultTopCandidates {
    candidates?: LogprobsResultCandidate[];
}

Properties

Properties

The list of candidate tokens, sorted by log probability in descending order.