smoltalk
    Preparing search index...

    Interface SmolClient

    interface SmolClient {
        _textStream(config: PromptConfig): AsyncGenerator<StreamChunk>;
        _textSync(config: PromptConfig): Promise<Result<PromptResult>>;
        text(
            promptConfig: PromptConfig,
        ): Promise<Result<PromptResult>> | AsyncGenerator<StreamChunk, any, any>;
        textStream(config: PromptConfig): AsyncGenerator<StreamChunk>;
        textSync(config: PromptConfig): Promise<Result<PromptResult>>;
    }

    Implemented by

    Index

    Methods