You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,9 @@ The OpenAI Agents SDK is a lightweight yet powerful framework for building multi
4
4
5
5
<imgsrc="https://cdn.openai.com/API/docs/images/orchestration.png"alt="Image of the Agents Tracing UI"style="max-height: 803px;">
6
6
7
-
8
7
> [!NOTE]
9
8
> Looking for the Python version? Check out [Agents SDK Python](https://github.com/openai/openai-agents-python).
10
9
11
-
12
10
## Core concepts
13
11
14
12
1.**Agents**: LLMs configured with instructions, tools, guardrails, and handoffs.
@@ -52,8 +50,10 @@ Experimental support:
52
50
53
51
### Installation
54
52
53
+
This SDK currently does not work with `[email protected]` and above. Please install `[email protected]` (or any older version) explicitly. We will resolve this dependency issue soon. Please check [this issue}(https://github.com/openai/openai-agents-js/issues/187) for updates.
Copy file name to clipboardExpand all lines: docs/src/content/docs/guides/quickstart.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ import quickstartExample from '../../../../../examples/docs/quickstart/index.ts?
22
22
2. Install the Agents SDK.
23
23
24
24
```bash
25
-
npm install @openai/agents
25
+
npm install @openai/agents'zod@<=3.25.67'
26
26
```
27
27
28
28
3. Set an OpenAI API key. If you don't have one, follow [these instructions](https://platform.openai.com/docs/quickstart#create-and-export-an-api-key) to create an OpenAI API key.
Copy file name to clipboardExpand all lines: docs/src/content/docs/guides/voice-agents/quickstart.mdx
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ import thinClientExample from '../../../../../../examples/docs/voice-agents/thin
37
37
1.**Install the Agents SDK**
38
38
39
39
```bash
40
-
npm install @openai/agents
40
+
npm install @openai/agents'zod@<=3.25.67'
41
41
```
42
42
43
43
Alternatively you can install `@openai/agents-realtime` for a standalone browser package.
@@ -113,15 +113,13 @@ import thinClientExample from '../../../../../../examples/docs/voice-agents/thin
113
113
From here you can start designing and building your own voice agent. Voice agents include a lot of the same features as regular agents, but have some of their own unique features.
Copy file name to clipboardExpand all lines: docs/src/content/docs/index.mdx
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,8 +63,10 @@ Here are the main features of the SDK:
63
63
64
64
## Installation
65
65
66
+
This SDK currently does not work with `[email protected]` and above. Please install `[email protected]` (or any older version) explicitly. We will resolve this dependency issue soon. Please check [this issue}(https://github.com/openai/openai-agents-js/issues/187) for updates.
このアプリケーションはユーザーのブラウザ上で動作するため、モデルへ安全に接続する方法が必要です。そのために、バックエンドサーバーで生成する [エフェメラルクライアントキー](https://platform.openai.com/docs/guides/realtime#creating-an-ephemeral-token)を使用します。テスト用途であれば、`curl` と通常の OpenAI API キーを使ってキーを生成することも可能です。
47
+
このアプリケーションはユーザーのブラウザで動作するため、Realtime API を介してモデルへ安全に接続する方法が必要です。そのために、[エフェメラルクライアントキー](https://platform.openai.com/docs/guides/realtime#creating-an-ephemeral-token)をバックエンドサーバーで生成します。テスト目的であれば、`curl` と通常の OpenAI API キーを使ってキーを生成することも可能です。
48
48
49
49
```bash
50
50
curl -X POST https://api.openai.com/v1/realtime/sessions \
@@ -55,11 +55,11 @@ import thinClientExample from '../../../../../../../examples/docs/voice-agents/t
0 commit comments