Hey everyone,
I’m working with the Realtime API and I want to log what the user is saying as text in the terminal. I already know how to do this for the AI’s response using:
if (response.type === “response.audio_transcript.done”) {
console.log(“AI Response Transcription:”, response.transcript);
}
But this only logs the AI’s response after transcription is done. How can I achieve the same for the user’s input in real-time?