Hi! I'm evaluating the usage of Whisper from a cloudflare worker for the company and wanted to know

Hi! I'm evaluating the usage of Whisper from a cloudflare worker for the company and wanted to know if there's any other argument besides the audio in the input that can be used? looking at this example:

    const input = {
      audio: [...new Uint8Array(blob)],
      // what are the other input options?
    };

    const response = await env.AI.run(
      "@cf/openai/whisper",
      input
    );


anything from this OpenAI doc?
Was this page helpful?