interface InworldOptions {
    speaking_rate?: number;
    temperature?: number;
    text_normalization?: "ON" | "OFF";
}

Properties

speaking_rate?: number

Controls how fast the voice speaks. 1.0 is normal speed, 0.5 is half, 1.5 is 1.5x. Default: 1.0.

temperature?: number

Controls randomness in the output. Recommended between 0.6 and 1.1. Default: 1.1.

text_normalization?: "ON" | "OFF"

Controls text normalization. "ON" expands numbers, dates, abbreviations. "OFF" reads text as written. Default: "ON".