/** * Audio chunk sent as a JSON message. The audio must be provided as a * base64-encoded string in the `audio` field. */ export interface RealtimeAudioInput { /** Event type identifier */ event: "audio_input"; /** Audio bytes as a base64-encoded string */ audio: string; }