FreakingGenius - v0.1.0
    Preparing search index...

    Interface ResponseGeneratorConfig

    Settings for the AI backend used by the generator.

    interface ResponseGeneratorConfig {
        maxTokens: number;
        modelId: string;
        temperature: number;
    }
    Index

    Properties

    maxTokens: number

    Maximum output tokens to request from the model.

    modelId: string

    AI Gateway model string, e.g. "anthropic/claude-sonnet-4-5".

    temperature: number

    Temperature for response variability (0 = deterministic, 1 = creative).