We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I create a PR to solve the issue I encountered?
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.
The text was updated successfully, but these errors were encountered:
Ah yes this is a fair point. Installing the SDK != installing the deps for examples. Maybe we should make the examples runnable as their own package.
Sorry, something went wrong.
This issue is stale because it has been open for 7 days with no activity.
No branches or pull requests
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:
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
or
pip install 'openai-agents[dev]'
Now I was able to enjoy the Demo.
The text was updated successfully, but these errors were encountered: