Closed as not planned
Description
Question
How can I create a PR to solve the issue I encountered?
Issue
Device: MacBook Pro 2.3 GHz Quad-Core Intel Core i5
Python: 3.13
I followed the classic installation:
python -m venv env
source env/bin/activate
pip install openai-agents
pip install 'openai-agents[voice]'
Then I wanted to try Voice Streamed Demo
export OPENAI_API_KEY=sk-...
python -m examples.voice.streamed.main
But two packages were missing. To resolve the issue I had to run the following
pip install sounddevice
pip install textual
or
pip install 'openai-agents[dev]'
Now I was able to enjoy the Demo.