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

    Interface HerokuChatCompletionStreamChoice

    A single choice in a streaming chat completion chunk from Heroku. Source: Based on common SSE patterns & SPECS.md 2.4.2

    interface HerokuChatCompletionStreamChoice {
        index: number;
        delta: HerokuChatCompletionStreamChoiceDelta;
        finish_reason: null | string;
    }
    Index

    Properties

    index: number
    finish_reason: null | string