Update quickstart.md

This commit is contained in:
Rohan Mehta 2025-03-23 17:56:55 -04:00 committed by GitHub
parent d6330e4651
commit 9f5ebd0e18
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ from agents.voice import AudioInput
# For simplicity, we'll just create 3 seconds of silence
# In reality, you'd get microphone data
audio = np.zeros(24000 * 3, dtype=np.int16)
buffer = np.zeros(24000 * 3, dtype=np.int16)
audio_input = AudioInput(buffer=buffer)
result = await pipeline.run(audio_input)