@themaximalist/llm.js
    Preparing search index...

    Interface PartialStreamResponse

    interface PartialStreamResponse {
        complete: () => Promise<StreamResponse>;
        options: Options;
        service: string;
        stream:
            | AsyncGenerator<string, any, any>
            | AsyncGenerator<Record<string, string | InputOutputTokens>, any, any>;
        think: boolean;
    }
    Index

    Properties

    complete: () => Promise<StreamResponse>
    options: Options
    service: string
    stream:
        | AsyncGenerator<string, any, any>
        | AsyncGenerator<Record<string, string | InputOutputTokens>, any, any>
    think: boolean