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

    Interface HerokuChatCompletionStreamChoiceDelta

    The delta part of a streaming choice, containing incremental updates. Source: Based on common SSE patterns for LLMs (e.g., OpenAI) & SPECS.md 2.4.2 Needs verification against actual Heroku stream format.

    interface HerokuChatCompletionStreamChoiceDelta {
        role?: HerokuChatMessageRole;
        content?: null | string;
        tool_calls?: Partial<HerokuToolCall>[];
    }
    Index

    Properties

    content?: null | string
    tool_calls?: Partial<HerokuToolCall>[]