Skip to content

Commit 791a6f6

Browse files
authored
Update quickstart.md
1 parent ca49991 commit 791a6f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/voice/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ from agents.voice import AudioInput
104104

105105
# For simplicity, we'll just create 3 seconds of silence
106106
# In reality, you'd get microphone data
107-
audio = np.zeros(24000 * 3, dtype=np.int16)
107+
buffer = np.zeros(24000 * 3, dtype=np.int16)
108108
audio_input = AudioInput(buffer=buffer)
109109

110110
result = await pipeline.run(audio_input)

0 commit comments

Comments
 (0)