v0.0.6 (voice support) (#267)

Release a new version with voice support
This commit is contained in:
Rohan Mehta 2025-03-20 13:13:00 -04:00 committed by GitHub
commit 1e8930d6ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -30,6 +30,8 @@ source env/bin/activate
pip install openai-agents pip install openai-agents
``` ```
For voice support, install with the optional `voice` group: `pip install openai-agents[voice]`.
## Hello world example ## Hello world example
```python ```python

View file

@ -1,6 +1,6 @@
[project] [project]
name = "openai-agents" name = "openai-agents"
version = "0.0.5" version = "0.0.6"
description = "OpenAI Agents SDK" description = "OpenAI Agents SDK"
readme = "README.md" readme = "README.md"
requires-python = ">=3.9" requires-python = ">=3.9"