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

    Interface HerokuChatCompletionStreamResponse

    Streaming response chunk payload from Heroku /v1/chat/completions API (SSE message data). Source: Based on common SSE patterns & SPECS.md 2.4.2 Needs verification against actual Heroku stream format.

    interface HerokuChatCompletionStreamResponse {
        id: string;
        object: string;
        created: number;
        model: string;
        choices: HerokuChatCompletionStreamChoice[];
    }
    Index

    Properties

    id: string
    object: string
    created: number
    model: string