@skeel/launcher
    Preparing search index...

    Type Alias SendMessageRequest

    Parameters for chat completion requests sent through the launcher API.

    type SendMessageRequest = {
        frequencyPenalty?: number;
        model: string;
        presencePenalty?: number;
        provider: "openai" | "openRouter";
        summarizationModel: string;
        temperature?: number;
        topP?: number;
    }
    Index
    frequencyPenalty?: number

    Penalize new tokens based on their frequency in the text so far.

    model: string

    Model identifier used for the chat completion.

    presencePenalty?: number

    Penalize new tokens based on whether they appear in the text so far.

    provider: "openai" | "openRouter"

    LLM provider to route the request through.

    summarizationModel: string

    Model identifier used for thread summarization.

    temperature?: number

    Sampling temperature between 0 and 2.

    topP?: number

    Nucleus sampling probability mass.