From fb8e5c2baf7f03b5ca1652f52d6185dcb5fb3c61 Mon Sep 17 00:00:00 2001 From: Rohan Mehta Date: Thu, 20 Mar 2025 13:10:54 -0400 Subject: [PATCH] v0.0.6 (voice support) --- README.md | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fc98b2b7d..85670df3a 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,8 @@ source env/bin/activate pip install openai-agents ``` +For voice support, install with the optional `voice` group: `pip install openai-agents[voice]`. + ## Hello world example ```python diff --git a/pyproject.toml b/pyproject.toml index 7567013be..667ab3550 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "openai-agents" -version = "0.0.5" +version = "0.0.6" description = "OpenAI Agents SDK" readme = "README.md" requires-python = ">=3.9"