We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca49991 commit 791a6f6Copy full SHA for 791a6f6
docs/voice/quickstart.md
@@ -104,7 +104,7 @@ from agents.voice import AudioInput
104
105
# For simplicity, we'll just create 3 seconds of silence
106
# In reality, you'd get microphone data
107
-audio = np.zeros(24000 * 3, dtype=np.int16)
+buffer = np.zeros(24000 * 3, dtype=np.int16)
108
audio_input = AudioInput(buffer=buffer)
109
110
result = await pipeline.run(audio_input)
0 commit comments