/** * A chunk of audio to be translated. */ export interface RttInputAudioChunkPayload { /** The message type identifier. */ messageType: "input_audio_chunk"; /** Base64-encoded audio data. Recommended chunk size is around 100 ms of audio. */ audioBase64: string; }