langchain.js
    Preparing search index...

    Interface XAIResponsesLogprobToken

    Log probability information for a token.

    interface XAIResponsesLogprobToken {
        bytes?: number[];
        logprob: number;
        token: string;
    }
    Index

    Properties

    Properties

    bytes?: number[]

    The bytes representation of the token.

    logprob: number

    The log probability of the token.

    token: string

    The token string.