Skip to content

Commit ff3a186

Browse files
docs: update translated document pages (#2434)
1 parent 78e6a04 commit ff3a186

6 files changed

Lines changed: 296 additions & 281 deletions

File tree

docs/ja/examples.md

Lines changed: 35 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -4,58 +4,58 @@ search:
44
---
55
# コード例
66

7-
[repo](https://github.com/openai/openai-agents-python/tree/main/examples)code examples セクションで、SDK のさまざまなサンプル実装をご覧ください。code examples は、異なるパターンと機能を示す複数のカテゴリーに整理されています。
7+
[repo](https://github.com/openai/openai-agents-python/tree/main/examples) の examples セクションで、SDK のさまざまなサンプル実装をご覧ください。examples は、異なるパターンと機能を示す複数のカテゴリーに整理されています。
88

99
## カテゴリー
1010

1111
- **[agent_patterns](https://github.com/openai/openai-agents-python/tree/main/examples/agent_patterns):**
12-
このカテゴリーの code examples は、次のような一般的な エージェント の設計パターンを示します
12+
このカテゴリーのコード例は、次のような一般的なエージェント設計パターンを示します
1313

1414
- 決定論的ワークフロー
1515
- Agents as tools
16-
- 並列 エージェント 実行
17-
- 条件付きツール利用
18-
- 入出力 ガードレール
19-
- 判定者としての LLM
16+
- 並列エージェント実行
17+
- 条件付きツール使用
18+
- 入出力ガードレール
19+
- 審査員としての LLM
2020
- ルーティング
2121
- ストリーミング ガードレール
2222

2323
- **[basic](https://github.com/openai/openai-agents-python/tree/main/examples/basic):**
24-
これらの code examples は、次のような SDK の基礎機能を紹介します
24+
これらのコード例では、次のような SDK の基礎的な機能を紹介します
2525

26-
- Hello World の例 (デフォルトモデル、GPT-5、open-weight モデル)
27-
- エージェント のライフサイクル管理
28-
- 動的な システムプロンプト
29-
- ストリーミング出力 (テキスト、アイテム、関数呼び出し args)
26+
- Hello World コード例 (デフォルトモデル、GPT-5、オープンウェイトモデル)
27+
- エージェントのライフサイクル管理
28+
- 動的なシステムプロンプト
29+
- ストリーミング 出力 (テキスト、items、関数呼び出し args)
3030
- プロンプトテンプレート
31-
- ファイル処理 (ローカル/リモート、画像/PDF)
32-
- 利用状況トラッキング
33-
- 非 strict な出力型
34-
- 以前の response ID の利用
31+
- ファイル処理 (ローカルとリモート、画像と PDF)
32+
- 使用状況トラッキング
33+
- 非厳密な出力型
34+
- 以前の response ID の使用
3535

3636
- **[customer_service](https://github.com/openai/openai-agents-python/tree/main/examples/customer_service):**
37-
航空会社向けのカスタマーサービスシステム例です
37+
航空会社向けのカスタマーサービスシステムの例です
3838

3939
- **[financial_research_agent](https://github.com/openai/openai-agents-python/tree/main/examples/financial_research_agent):**
40-
金融データ分析向けの エージェント とツールを用いた structured なリサーチワークフローを示す、金融リサーチ エージェント です
40+
金融データ分析のためのエージェントとツールを用いた structured なリサーチワークフローを示す、金融リサーチエージェントです
4141

4242
- **[handoffs](https://github.com/openai/openai-agents-python/tree/main/examples/handoffs):**
43-
メッセージフィルタリングを用いた エージェント の ハンドオフ の実用例をご覧ください
43+
メッセージフィルタリングを伴うエージェントのハンドオフの実践的なコード例をご覧ください
4444

4545
- **[hosted_mcp](https://github.com/openai/openai-agents-python/tree/main/examples/hosted_mcp):**
46-
hosted MCP (Model context protocol) のコネクターと承認の使い方を示す code examples です
46+
hosted MCP (Model context protocol) のコネクターと承認を使用する方法を示すコード例です
4747

4848
- **[mcp](https://github.com/openai/openai-agents-python/tree/main/examples/mcp):**
49-
MCP (Model context protocol) を使って エージェント を構築する方法を学びます。内容は次のとおりです
49+
次を含め、MCP (Model context protocol) を用いてエージェントを構築する方法を学びます
5050

51-
- ファイルシステムの例
52-
- Git の例
53-
- MCP プロンプトサーバーの例
54-
- SSE (Server-Sent Events) の例
55-
- ストリーム可能な HTTP の例
51+
- Filesystem コード例
52+
- Git コード例
53+
- MCP プロンプトサーバーのコード例
54+
- SSE (Server-Sent Events) コード例
55+
- ストリーミング可能な HTTP コード例
5656

5757
- **[memory](https://github.com/openai/openai-agents-python/tree/main/examples/memory):**
58-
エージェント 向けのさまざまなメモリ実装の code examples です。内容は次のとおりです
58+
次を含め、エージェント向けのさまざまなメモリ実装のコード例です
5959

6060
- SQLite セッションストレージ
6161
- 高度な SQLite セッションストレージ
@@ -65,30 +65,31 @@ search:
6565
- OpenAI セッションストレージ
6666

6767
- **[model_providers](https://github.com/openai/openai-agents-python/tree/main/examples/model_providers):**
68-
カスタムプロバイダーや LiteLLM 連携を含め、SDK で OpenAI 以外のモデルを使う方法を確認します
68+
カスタムプロバイダーや LiteLLM 統合を含め、SDK で OpenAI 以外のモデルを使用する方法を確認します
6969

7070
- **[realtime](https://github.com/openai/openai-agents-python/tree/main/examples/realtime):**
71-
SDK を使ってリアルタイム体験を構築する方法を示す code examples です。内容は次のとおりです
71+
次を含め、SDK を使用してリアルタイムの体験を構築する方法を示すコード例です
7272

7373
- Web アプリケーション
7474
- コマンドラインインターフェース
75-
- Twilio 連携
75+
- Twilio 統合
7676

7777
- **[reasoning_content](https://github.com/openai/openai-agents-python/tree/main/examples/reasoning_content):**
78-
reasoning content と structured outputs の扱い方を示す code examples です
78+
reasoning content と structured outputs を扱う方法を示すコード例です
7979

8080
- **[research_bot](https://github.com/openai/openai-agents-python/tree/main/examples/research_bot):**
81-
複雑なマルチ エージェント のリサーチワークフローを示す、シンプルな ディープリサーチ のクローンです
81+
複雑なマルチエージェントのリサーチワークフローを示す、シンプルな ディープリサーチ クローンです
8282

8383
- **[tools](https://github.com/openai/openai-agents-python/tree/main/examples/tools):**
84-
OpenAI がホストするツール と、次のような実験的な Codex ツールの実装方法を学びます
84+
次を含め、OpenAI がホストするツール と、実験的な Codex ツール群を実装する方法を学びます
8585

8686
- Web 検索 と、フィルター付き Web 検索
8787
- ファイル検索
8888
- Code Interpreter
8989
- コンピュータ操作
9090
- 画像生成
91-
- 実験的な Codex ツールワークフロー (`examples/tools/codex.py`)
91+
- 実験的な Codex ツールのワークフロー (`examples/tools/codex.py`)
92+
- 実験的な Codex 同一スレッドのワークフロー (`examples/tools/codex_same_thread.py`)
9293

9394
- **[voice](https://github.com/openai/openai-agents-python/tree/main/examples/voice):**
94-
ストリーミング音声の例を含め、TTS および STT モデルを使用した音声 エージェント の code examples をご覧ください
95+
ストリーミング音声のコード例を含め、TTS STT モデルを使用した音声エージェントのコード例をご覧ください

0 commit comments

Comments
 (0)