SongGuess
    Preparing search index...

    Interface Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Prompt_1

    interface Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Prompt_1 {
        frequency_penalty?: number;
        lora?: string;
        max_tokens?: number;
        presence_penalty?: number;
        prompt: string;
        raw?: boolean;
        repetition_penalty?: number;
        response_format?: Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_JSON_Mode_2;
        seed?: number;
        stream?: boolean;
        temperature?: number;
        top_k?: number;
        top_p?: number;
    }
    Index

    Properties

    frequency_penalty?: number

    Decreases the likelihood of the model repeating the same lines verbatim.

    lora?: string

    Name of the LoRA (Low-Rank Adaptation) model to fine-tune the base model.

    max_tokens?: number

    The maximum number of tokens to generate in the response.

    presence_penalty?: number

    Increases the likelihood of the model introducing new topics.

    prompt: string

    The input text prompt for the model to generate a response.

    raw?: boolean

    If true, a chat template is not applied and you must adhere to the specific model's expected formatting.

    repetition_penalty?: number

    Penalty for repeated tokens; higher values discourage repetition.

    seed?: number

    Random seed for reproducibility of the generation.

    stream?: boolean

    If true, the response will be streamed back incrementally using SSE, Server Sent Events.

    temperature?: number

    Controls the randomness of the output; higher values produce more random results.

    top_k?: number

    Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises.

    top_p?: number

    Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses.