Heroku LangChain - v0.2.1
    Preparing search index...

    Interface HerokuChatCompletionChoice

    A single choice in the Heroku chat completion response. Source: Heroku /v1/chat/completions doc (choices array in response)

    interface HerokuChatCompletionChoice {
        index: number;
        message: HerokuChatMessage;
        finish_reason: string;
    }
    Index

    Properties

    index: number
    finish_reason: string