ツール
ツールを使用すると、エージェントはデータの取得、コードの実行、外部 API の呼び出し、さらにはコンピュータ操作などのアクションを実行できます。SDK は 5 つのカテゴリーをサポートしています。
- OpenAI がホストするツール:OpenAI のサーバー上でモデルと並行して実行されます。
- ローカル/ランタイム実行ツール:
ComputerToolとApplyPatchToolは常にお使いの環境で実行され、ShellToolはローカルまたはホスト型コンテナで実行できます。 - Function Calling:任意の Python 関数をツールとしてラップします。
- Agents as tools:完全なハンドオフを行わずに、エージェントを呼び出し可能なツールとして公開します。
- 実験的機能:Codex ツール:ツール呼び出しからワークスペース単位の Codex タスクを実行します。
ツールタイプの選択
このページをカタログとして使用し、制御するランタイムに対応するセクションへ進んでください。
| 実行したいこと | 参照先 |
|---|---|
| OpenAI が管理するツール(Web 検索、ファイル検索、Code Interpreter、ホスト型 MCP、画像生成)を使用する | ホスト型ツール |
| ツール検索を使用して、大規模なツール群の読み込みをランタイムまで遅延する | ホスト型ツール検索 |
| 生成された JavaScript から複数のツール呼び出しを調整する | プログラムによるツール呼び出し |
| 独自のプロセスまたは環境でツールを実行する | ローカルランタイムツール |
| Python 関数をツールとしてラップする | 関数ツール |
| ハンドオフなしで、あるエージェントから別のエージェントを呼び出せるようにする | Agents as tools |
| エージェントからワークスペース単位の Codex タスクを実行する | 実験的機能:Codex ツール |
ホスト型ツール
OpenAI は、OpenAIResponsesModel を使用する際に、いくつかの組み込みツールを提供しています。
WebSearchToolを使用すると、エージェントが Web を検索できます。FileSearchToolを使用すると、OpenAI ベクトルストアから情報を取得できます。CodeInterpreterToolを使用すると、LLM がサンドボックス環境でコードを実行できます。HostedMCPToolは、リモート MCP サーバーのツールをモデルに公開します。ImageGenerationToolは、プロンプトから画像を生成します。ToolSearchToolを使用すると、モデルは遅延されたツール、名前空間、またはホスト型 MCP サーバーを必要に応じて読み込めます。ProgrammaticToolCallingToolを使用すると、モデルは生成された JavaScript から対象ツールを調整できます。
ホスト型検索の高度なオプション:
FileSearchToolは、vector_store_idsとmax_num_resultsに加えて、filters、ranking_options、include_search_resultsをサポートします。max_num_resultsには 1~50 の整数を設定します。Noneまたはゼロの場合は、プロバイダーのデフォルトが使用されます。WebSearchToolは、filters、user_location、search_context_sizeをサポートします。
from agents import Agent, FileSearchTool, Runner, WebSearchTool
agent = Agent(
name="Assistant",
tools=[
WebSearchTool(),
FileSearchTool(
max_num_results=3,
vector_store_ids=["VECTOR_STORE_ID"],
),
],
)
async def main():
result = await Runner.run(agent, "Which coffee shop should I go to, taking into account my preferences and the weather today in SF?")
print(result.final_output)
ホスト型ツール検索
ツール検索を使用すると、OpenAI Responses モデルは大規模なツール群の読み込みをランタイムまで遅延できるため、現在のターンで必要なサブセットのみを読み込めます。多数の関数ツール、名前空間グループ、またはホスト型 MCP サーバーがあり、すべてのツールをあらかじめ公開せずにツールスキーマのトークン数を削減したい場合に役立ちます。
エージェントを構築する時点で候補となるツールがすでに分かっている場合は、ホスト型ツール検索を使用してください。アプリケーション側で読み込む対象を動的に決定する必要がある場合、Responses API はクライアント実行型のツール検索もサポートしていますが、標準の Runner はこのモードを自動実行しません。
from typing import Annotated
from agents import Agent, Runner, ToolSearchTool, tool_namespace
from agents.decorators import tool
@tool(defer_loading=True)
def get_customer_profile(
customer_id: Annotated[str, "The customer ID to look up."],
) -> str:
"""Fetch a CRM customer profile."""
return f"profile for {customer_id}"
@tool(defer_loading=True)
def list_open_orders(
customer_id: Annotated[str, "The customer ID to look up."],
) -> str:
"""List open orders for a customer."""
return f"open orders for {customer_id}"
crm_tools = tool_namespace(
name="crm",
description="CRM tools for customer lookups.",
tools=[get_customer_profile, list_open_orders],
)
agent = Agent(
name="Operations assistant",
model="gpt-5.6-sol",
instructions="Load the crm namespace before using CRM tools.",
tools=[*crm_tools, ToolSearchTool()],
)
result = await Runner.run(agent, "Look up customer_42 and list their open orders.")
print(result.final_output)
留意事項:
- ホスト型ツール検索は、OpenAI Responses モデルでのみ使用できます。現在の Python SDK のサポートは
openai>=2.25.0に依存します。 - エージェントで遅延読み込み対象を設定する場合は、
ToolSearchTool()を 1 つだけ追加します。 - 検索可能な対象には、
@function_tool(defer_loading=True)、tool_namespace(name=..., description=..., tools=[...])、HostedMCPTool(tool_config={..., "defer_loading": True})が含まれます。 - 遅延読み込みを行う関数ツールは、
ToolSearchTool()と組み合わせる必要があります。名前空間のみの構成でもToolSearchTool()を使用し、モデルが必要に応じて適切なグループを読み込めるようにできます。 tool_namespace()は、複数のFunctionToolインスタンスを共通の名前空間名と説明の下にまとめます。crm、billing、shippingなど、関連するツールが多数ある場合に通常最も適しています。- OpenAI の公式ベストプラクティスガイダンスでは、可能な場合は名前空間を使用することを推奨しています。
- 可能であれば、個別に遅延される多数の関数よりも、名前空間またはホスト型 MCP サーバーを優先してください。通常、モデルにとって高水準で検索しやすい対象となり、トークンもより効果的に節約できます。
- 名前空間には、即時利用可能なツールと遅延ツールを混在させられます。
defer_loading=Trueが指定されていないツールはすぐに呼び出せますが、同じ名前空間内の遅延ツールはツール検索を通じて読み込まれます。 - 目安として、各名前空間は十分に小さく保ち、できれば関数を 10 個未満にしてください。
- 名前付きの
tool_choiceでは、単独の名前空間名や遅延専用ツールを指定できません。auto、required、または実際にトップレベルで呼び出し可能なツール名を使用してください。 ToolSearchTool(execution="client")は、Responses を手動でオーケストレーションするためのものです。モデルがクライアント実行型のtool_search_callを生成した場合、標準のRunnerはそれを自動実行せず、例外を発生させます。- ツール検索のアクティビティは、
RunResult.new_itemsおよびRunItemStreamEventに、専用の項目タイプとイベントタイプとして表示されます。 - 名前空間による読み込みとトップレベルの遅延ツールの両方を扱う、完全に実行可能なコード例については、
examples/tools/tool_search.pyを参照してください。 - 公式プラットフォームガイド:ツール検索。
プログラムによるツール呼び出し
プログラムによるツール呼び出しを使用すると、対応する OpenAI Responses モデルが JavaScript を生成し、対象ツールを呼び出して出力を結合し、1 つの結果をモデルに返せます。各ツール呼び出しの後にモデルとのラウンドトリップを行うことなく、ループ、分岐、並列呼び出し、中間計算を活用できる、範囲の明確なワークフローに役立ちます。
生成されたプログラムは、新しいホスト型 V8 環境で実行されます。Node.js API、ファイルシステムやネットワークへのアクセス、永続プロセスは利用できません。プログラムが操作できるのは、明示的に許可したツールのみです。
from pydantic import BaseModel
from agents import (
Agent,
ModelSettings,
ProgrammaticToolCallingTool,
Runner,
)
from agents.decorators import tool
class InventoryOutput(BaseModel):
sku: str
available_units: int
@tool(allowed_callers=["programmatic"])
def get_inventory(sku: str) -> InventoryOutput:
return InventoryOutput(sku=sku, available_units=42)
agent = Agent(
name="Inventory planner",
model="gpt-5.6",
model_settings=ModelSettings(tool_choice="programmatic_tool_calling"),
tools=[get_inventory, ProgrammaticToolCallingTool()],
)
result = Runner.run_sync(agent, "Check inventory for desk-lamp and summarize it.")
print(result.final_output)
留意事項:
- プログラムによるツール呼び出しは、対応する OpenAI Responses モデルでのみ使用できます。
ProgrammaticToolCallingTool()とtool_choice="programmatic_tool_calling"は、Chat Completions モデルおよび Responses 以外のバックエンドでは拒否されます。 - エージェントに追加できる
ProgrammaticToolCallingTool()は最大 1 つです。また、エージェントは、プログラムから呼び出し可能なツールを少なくとも 1 つ、名前空間、遅延関数、遅延されたホスト型 MCP サーバーを基盤とするToolSearchTool()、またはプロンプトで管理される不透明なツール群のいずれかを公開する必要があります。検索可能な対象がない単独のToolSearchTool()は拒否されます。 allowed_callersは、ツールをどのように呼び出せるかを制御します。省略した場合、モデルからの直接呼び出しのみが許可されます。プログラムからのみアクセス可能にするには["programmatic"]を使用し、両方を許可するには["direct", "programmatic"]を使用します。- オプトインできる SDK ツールタイプは、
FunctionTool、CustomTool、ShellTool、ApplyPatchTool、HostedMCPTool、CodeInterpreterToolです。関数、カスタム、シェル、パッチ適用ツールでは、allowed_callersを直接公開します。ホスト型 MCP と Code Interpreter では、tool_config内にallowed_callersを設定します。 @function_tool(allowed_callers=[...])では、Pydantic モデル、TypedDict、dataclass などの構造化された戻り値アノテーションが、自動的に厳密なオブジェクト出力スキーマになり、値がプログラムに返される前に検証されます。関数に使用可能なアノテーションがない場合はoutput_type=...を使用します。厳密なオブジェクトスキーマがすでにある場合は、低水準のエスケープハッチであるoutput_json_schema={...}を使用します。output_typeとoutput_json_schemaは同時に指定できません。単純なstr、Any、Noneの戻り値には型が付きません。スキーマに基づくプログラム所有の呼び出しでは、自由形式のテキストが出力スキーマを満たさないため、デフォルトの失敗フォーマッターは無効になります。そのため、スキーマに準拠する JSON を返すカスタムfailure_error_functionを指定しない限り、ハンドラーの例外は伝播します。- プログラム所有の SDK ツールでも、通常の Runner ライフサイクルが使用されます。ツールの入出力ガードレール、フック、タイムアウト、同時実行制限、承認、セッション、
RunStateの一時停止/再開動作は引き続き適用され、SDK は各子呼び出しとプログラム呼び出し元との関係を保持します。 ProgrammaticToolCallingTool()が存在する場合、プログラムが実行される前であっても、モデルリクエストの再試行にはより厳格なリプレイ安全性の境界が適用されます。SDK は、これらのリクエストについて、プロバイダー管理の再試行と WebSocket のイベント前再試行を無効にします。Runner の再試行ポリシーは、プロバイダーの助言でリプレイが安全であると明示された場合にのみ再試行します。retry_policies.network_error()だけでは、この境界を上書きできません。- 承認が重要なツールや影響の大きいツールは通常、より大きなプログラムの一部になる前に各アクションを人が確認できるよう、直接呼び出しとして維持することを推奨します。プログラム所有の呼び出しが承認待ちで一時停止した場合は、通常どおり
RunStateを通じて中断を解決し、元の実行を再開します。 - プログラムによるツール呼び出しは、ホスト型ツール検索と組み合わせられます。生成されたプログラムから遅延ツールを呼び出すには、モデルが先にそのツールを読み込む必要があります。
program項目と、その通常のプログラム所有の子ツール呼び出しは、ToolCallItemエントリとして表示されます。対応するprogram_outputは、ToolCallOutputItemとして表示されます。一方、ホスト型 MCP の承認リクエストとツールカタログでは、専用の MCP 項目とストリームイベントが使用されます。確認方法の詳細については、実行結果とストリーミングを参照してください。- 並行処理を行う在庫計画の完全なコード例については、
examples/tools/programmatic_tool_calling.pyを参照してください。 - 公式プラットフォームガイド:プログラムによるツール呼び出し。
ホスト型コンテナシェルとスキル
ShellTool は、OpenAI がホストするコンテナでの実行もサポートします。ローカルランタイムではなく、管理されたコンテナでモデルにシェルコマンドを実行させたい場合は、このモードを使用します。
from agents import Agent, Runner, ShellTool, ShellToolSkillReference
csv_skill: ShellToolSkillReference = {
"type": "skill_reference",
"skill_id": "skill_698bbe879adc81918725cbc69dcae7960bc5613dadaed377",
"version": "1",
}
agent = Agent(
name="Container shell agent",
model="gpt-5.6-sol",
instructions="Use the mounted skill when helpful.",
tools=[
ShellTool(
environment={
"type": "container_auto",
"network_policy": {"type": "disabled"},
"skills": [csv_skill],
}
)
],
)
result = await Runner.run(
agent,
"Use the configured skill to analyze CSV files in /mnt/data and summarize totals by region.",
)
print(result.final_output)
既存のコンテナを後続の実行で再利用するには、environment={"type": "container_reference", "container_id": "cntr_..."} を設定します。
留意事項:
- ホスト型シェルは、Responses API のシェルツールを通じて利用できます。
container_autoはリクエスト用のコンテナをプロビジョニングし、container_referenceは既存のコンテナを再利用します。container_autoには、file_idsとmemory_limitも含められます。environment.skillsは、スキル参照とインラインスキルバンドルを受け付けます。- ホスト型環境では、
ShellToolにexecutor、needs_approval、on_approvalを設定しないでください。 network_policyは、disabledモードとallowlistモードをサポートします。- allowlist モードでは、
network_policy.domain_secretsにより、ドメイン単位のシークレットを名前で注入できます。 - 完全なコード例については、
examples/tools/container_shell_skill_reference.pyとexamples/tools/container_shell_inline_skill.pyを参照してください。 - OpenAI プラットフォームガイド:シェルおよびスキル。
ローカルランタイムツール
ローカルランタイムツールは、モデルレスポンス自体の外部で実行されます。呼び出すタイミングは引き続きモデルが決定しますが、実際の処理はアプリケーションまたは設定済みの実行環境が行います。
ComputerTool と ApplyPatchTool には、常に利用者が提供するローカル実装が必要です。ShellTool は両方のモードに対応しています。管理された実行が必要な場合は前述のホスト型コンテナ設定を使用し、独自のプロセスでコマンドを実行する場合は以下のローカルランタイム設定を使用します。
ローカルランタイムツールでは、次の実装を提供する必要があります。
ComputerTool:GUI/ブラウザーの自動化を有効にするには、ComputerまたはAsyncComputerインターフェースを実装します。ShellTool:ローカル実行とホスト型コンテナ実行の両方に対応する最新のシェルツールです。LocalShellTool:従来のローカルシェル統合です。ApplyPatchTool:差分をローカルで適用するには、ApplyPatchEditorを実装します。- ローカルシェルスキルは、
ShellTool(environment={"type": "local", "skills": [...]})で利用できます。
シェルアクションのタイムアウトでは、有限のタイムアウトとして正の整数のミリ秒値を使用します。ゼロは executor 実装間で共通の意味を持たないため、ローカルの ShellTool executor を呼び出す前に、SDK は 0 と None の両方を明示的なタイムアウトなしとして扱います。それ以外の値は、executor の呼び出し前に拒否されます。これはタイムアウトフィールドに固有の動作です。max_output_length=0 は、取得する出力を空にするリクエストとして引き続きサポートされます。
ComputerTool と Responses のコンピュータツール
ComputerTool は引き続きローカルハーネスです。利用者が Computer または AsyncComputer の実装を提供すると、SDK がそのハーネスを OpenAI Responses API のコンピュータ機能にマッピングします。
明示的な gpt-5.5 リクエストの場合、SDK は GA の組み込みツールペイロード {"type": "computer"} を送信します。以前の computer-use-preview モデルでは、プレビューペイロード {"type": "computer_use_preview", "environment": ..., "display_width": ..., "display_height": ...} が引き続き使用されます。これは、OpenAI のコンピュータ操作ガイドに記載されているプラットフォーム移行を反映しています。
- モデル:
computer-use-preview->gpt-5.5 - ツールセレクター:
computer_use_preview->computer - コンピュータ呼び出しの形式:
computer_callごとに 1 つのaction->computer_call上の一括actions[] - 切り詰め:プレビューパスでは
ModelSettings(truncation="auto")が必須 -> GA パスでは不要
SDK は、実際の Responses リクエストで有効なモデルに基づいて、そのワイヤー形式を選択します。プロンプトテンプレートを使用し、モデルがプロンプト側で指定されているためリクエストで model が省略される場合、model="gpt-5.5" を明示的に維持するか、ModelSettings(tool_choice="computer") または ModelSettings(tool_choice="computer_use") で GA セレクターを強制しない限り、SDK はプレビュー互換のコンピュータペイロードを維持します。
ComputerTool が存在する場合、tool_choice="computer"、"computer_use"、"computer_use_preview" はすべて受け付けられ、有効なリクエストモデルに対応する組み込みセレクターへ正規化されます。ComputerTool がない場合、これらの文字列は引き続き通常の関数名として動作します。
この違いは、ComputerTool が ComputerProvider ファクトリーを基盤としている場合に重要です。GA の computer ペイロードでは、シリアライズ時に environment や寸法が不要なため、未解決のファクトリーでも問題ありません。プレビュー互換のシリアライズでは、SDK が environment、display_width、display_height を送信できるよう、解決済みの Computer または AsyncComputer インスタンスが引き続き必要です。
ランタイムでは、どちらのパスも同じローカルハーネスを使用します。プレビューレスポンスは、単一の action を持つ computer_call 項目を生成します。gpt-5.5 は一括 actions[] を生成でき、SDK は computer_call_output のスクリーンショット項目を生成する前に、それらを順番に実行します。実行可能な Playwright ベースのハーネスについては、examples/tools/computer_use.py を参照してください。
from agents import Agent, ApplyPatchTool, ShellTool
from agents.computer import AsyncComputer
from agents.editor import ApplyPatchResult, ApplyPatchOperation, ApplyPatchEditor
class NoopComputer(AsyncComputer):
environment = "browser"
dimensions = (1024, 768)
async def screenshot(self): return ""
async def click(self, x, y, button): ...
async def double_click(self, x, y): ...
async def scroll(self, x, y, scroll_x, scroll_y): ...
async def type(self, text): ...
async def wait(self): ...
async def move(self, x, y): ...
async def keypress(self, keys): ...
async def drag(self, path): ...
class NoopEditor(ApplyPatchEditor):
async def create_file(self, op: ApplyPatchOperation): return ApplyPatchResult(status="completed")
async def update_file(self, op: ApplyPatchOperation): return ApplyPatchResult(status="completed")
async def delete_file(self, op: ApplyPatchOperation): return ApplyPatchResult(status="completed")
async def run_shell(request):
return "shell output"
agent = Agent(
name="Local tools agent",
tools=[
ShellTool(executor=run_shell),
ApplyPatchTool(editor=NoopEditor()),
# ComputerTool expects a Computer/AsyncComputer implementation; omitted here for brevity.
],
)
関数ツール
任意の Python 関数をツールとして使用できます。Agents SDK がツールを自動的に設定します。
- ツール名には Python 関数の名前が使用されます(名前を指定することもできます)
- ツールの説明は関数の docstring から取得されます(説明を指定することもできます)
- 関数入力のスキーマは、関数の引数から自動的に作成されます
- 無効にしない限り、各入力の説明は関数の docstring から取得されます
@tool で作成されたツールは、読み取り専用の __wrapped__ 属性を通じて、元の Python callable を公開します。これは調査やテストに役立ちますが、直接呼び出すと、スキーマ検証、コンテキスト注入、ガードレール、タイムアウト、失敗処理、トレーシングを含むツールランタイムパイプラインを迂回します。手動で構築した FunctionTool インスタンスは、__wrapped__ を公開しません。
Python の inspect モジュールを使用して関数シグネチャを抽出し、griffe で docstring を解析し、pydantic でスキーマを作成します。
OpenAI Responses モデルを使用する場合、@function_tool(defer_loading=True) は、ToolSearchTool() が読み込むまで関数ツールを非表示にします。また、tool_namespace() を使用して、関連する関数ツールをグループ化することもできます。完全な設定と制約については、ホスト型ツール検索を参照してください。
import json
from typing_extensions import TypedDict, Any
from agents import Agent, FunctionTool, RunContextWrapper
from agents.decorators import tool
class Location(TypedDict):
lat: float
long: float
@tool # (1)!
async def fetch_weather(location: Location) -> str:
# (2)!
"""Fetch the weather for a given location.
Args:
location: The location to fetch the weather for.
"""
# In real life, we'd fetch the weather from a weather API
return "sunny"
@tool(name_override="fetch_data") # (3)!
def read_file(ctx: RunContextWrapper[Any], path: str, directory: str | None = None) -> str:
"""Read the contents of a file.
Args:
path: The path to the file to read.
directory: The directory to read the file from.
"""
# In real life, we'd read the file from the file system
return "<file contents>"
agent = Agent(
name="Assistant",
tools=[fetch_weather, read_file], # (4)!
)
for tool in agent.tools:
if isinstance(tool, FunctionTool):
print(tool.name)
print(tool.description)
print(json.dumps(tool.params_json_schema, indent=2))
print()
- 関数の引数には任意の Python 型を使用でき、関数は同期または非同期にできます。
- docstring が存在する場合は、説明と引数の説明を取得するために使用されます。
- 関数は任意で
contextを受け取れます(最初の引数である必要があります)。ツール名、説明、使用する docstring スタイルなどのオーバーライドも設定できます。 - デコレーターを適用した関数をツールのリストに渡せます。
出力を表示するには展開してください
fetch_weather
Fetch the weather for a given location.
{
"$defs": {
"Location": {
"properties": {
"lat": {
"title": "Lat",
"type": "number"
},
"long": {
"title": "Long",
"type": "number"
}
},
"required": [
"lat",
"long"
],
"title": "Location",
"type": "object"
}
},
"properties": {
"location": {
"$ref": "#/$defs/Location",
"description": "The location to fetch the weather for."
}
},
"required": [
"location"
],
"title": "fetch_weather_args",
"type": "object"
}
fetch_data
Read the contents of a file.
{
"properties": {
"path": {
"description": "The path to the file to read.",
"title": "Path",
"type": "string"
},
"directory": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The directory to read the file from.",
"title": "Directory"
}
},
"required": [
"path"
],
"title": "fetch_data_args",
"type": "object"
}
関数ツールからの画像またはファイルの返却
テキスト出力に加えて、1 つ以上の画像やファイルを関数ツールの出力として返せます。そのためには、次のいずれかを返します。
- 画像:
ToolOutputImage(または TypedDict 版のToolOutputImageDict) - ファイル:
ToolOutputFileContent(または TypedDict 版のToolOutputFileContentDict) - テキスト:文字列、文字列化可能なオブジェクト、または
ToolOutputText(または TypedDict 版のToolOutputTextDict)
カスタム関数ツール
Python 関数をツールとして使用したくない場合もあります。必要に応じて、FunctionTool を直接作成できます。次の項目を指定する必要があります。
namedescriptionparams_json_schema:引数の JSON スキーマon_invoke_tool:ToolContextと JSON 文字列形式の引数を受け取り、ツール出力(テキスト、構造化されたツール出力オブジェクト、出力のリストなど)を返す非同期関数。
from typing import Any
from pydantic import BaseModel
from agents import RunContextWrapper, FunctionTool
def do_some_work(data: str) -> str:
return "done"
class FunctionArgs(BaseModel):
username: str
age: int
async def run_function(ctx: RunContextWrapper[Any], args: str) -> str:
parsed = FunctionArgs.model_validate_json(args)
return do_some_work(data=f"{parsed.username} is {parsed.age} years old")
tool = FunctionTool(
name="process_user",
description="Processes extracted user data",
params_json_schema=FunctionArgs.model_json_schema(),
on_invoke_tool=run_function,
)
引数と docstring の自動解析
前述のように、関数シグネチャを自動的に解析してツールのスキーマを抽出し、docstring を解析してツールと個々の引数の説明を抽出します。留意点は次のとおりです。
- シグネチャの解析は
inspectモジュールを使用して行われます。型アノテーションを使用して引数の型を把握し、スキーマ全体を表す Pydantic モデルを動的に構築します。Python の基本型、Pydantic モデル、TypedDict など、ほとんどの型をサポートします。 - docstring の解析には
griffeを使用します。サポートされる docstring 形式は、google、sphinx、numpyです。docstring 形式の自動検出を試みますが、これはベストエフォートです。function_toolを呼び出す際に明示的に設定することもできます。また、use_docstring_infoをFalseに設定すると、docstring の解析を無効にできます。Google スタイルの docstring では、要約テキストの直後に空行を挟まず配置されたArgs:、Arguments:、Params:、Parameters:セクションもパーサーが受け付けます。
スキーマ抽出のコードは、agents.function_schema にあります。
Pydantic Field による引数の制約と説明
Pydantic の Field を使用して、ツール引数に制約(数値の最小値/最大値、文字列の長さやパターンなど)と説明を追加できます。Pydantic と同様に、デフォルト値ベース(arg: int = Field(..., ge=1))と Annotated(arg: Annotated[int, Field(..., ge=1)])の両方の形式がサポートされます。生成される JSON スキーマと検証には、これらの制約が含まれます。
from typing import Annotated
from pydantic import Field
from agents.decorators import tool
# Default-based form
@tool
def score_a(score: int = Field(..., ge=0, le=100, description="Score from 0 to 100")) -> str:
return f"Score recorded: {score}"
# Annotated form
@tool
def score_b(score: Annotated[int, Field(..., ge=0, le=100, description="Score from 0 to 100")]) -> str:
return f"Score recorded: {score}"
関数ツールのタイムアウト
@function_tool(timeout=...) を使用して、非同期関数ツールに呼び出し単位のタイムアウトを設定できます。
import asyncio
from agents import Agent
from agents.decorators import tool
@tool(timeout=2.0)
async def slow_lookup(query: str) -> str:
await asyncio.sleep(10)
return f"Result for {query}"
agent = Agent(
name="Timeout demo",
instructions="Use tools when helpful.",
tools=[slow_lookup],
)
タイムアウトに達した場合、デフォルトの動作は timeout_behavior="error_as_result" で、モデルから確認できるタイムアウトメッセージ(例:Tool 'slow_lookup' timed out after 2 seconds.)が送信されます。
タイムアウト処理は次のように制御できます。
timeout_behavior="error_as_result"(デフォルト):モデルが回復できるように、タイムアウトメッセージをモデルへ返します。timeout_behavior="raise_exception":ToolTimeoutErrorを発生させ、実行を失敗させます。timeout_error_function=...:error_as_resultを使用する場合のタイムアウトメッセージをカスタマイズします。
import asyncio
from agents import Agent, Runner, ToolTimeoutError
from agents.decorators import tool
@tool(timeout=1.5, timeout_behavior="raise_exception")
async def slow_tool() -> str:
await asyncio.sleep(5)
return "done"
agent = Agent(name="Timeout hard-fail", tools=[slow_tool])
try:
await Runner.run(agent, "Run the tool")
except ToolTimeoutError as e:
print(f"{e.tool_name} timed out in {e.timeout_seconds} seconds")
Note
タイムアウト設定は、非同期の @function_tool ハンドラーでのみサポートされます。
関数ツールのエラー処理
@function_tool を使用して関数ツールを作成する場合、failure_error_function を渡せます。これは、ツール呼び出しがクラッシュした場合に LLM へエラーレスポンスを提供する関数です。
- デフォルトでは(つまり何も渡さない場合)、エラーが発生したことを LLM に通知する
default_tool_error_functionが実行されます。 - 独自のエラー関数を渡した場合は、代わりにその関数が実行され、レスポンスが LLM に送信されます。
- 明示的に
Noneを渡すと、ツール呼び出しのエラーが再送出され、利用者側で処理できます。モデルが無効な JSON を生成した場合はModelBehaviorError、コードがクラッシュした場合はUserErrorになるなど、状況によって異なります。
from agents import RunContextWrapper
from agents.decorators import tool
from typing import Any
def my_custom_error_function(context: RunContextWrapper[Any], error: Exception) -> str:
"""A custom function to provide a user-friendly error message."""
print(f"A tool call failed with the following error: {error}")
return "An internal server error occurred. Please try again later."
@tool(failure_error_function=my_custom_error_function)
def get_user_profile(user_id: str) -> str:
"""Fetches a user profile from a mock API.
This function demonstrates a 'flaky' or failing API call.
"""
if user_id == "user_123":
return "User profile for user_123 successfully retrieved."
else:
raise ValueError(f"Could not retrieve profile for user_id: {user_id}. API returned an error.")
FunctionTool オブジェクトを手動で作成する場合は、on_invoke_tool 関数内でエラーを処理する必要があります。
Agents as tools
一部のワークフローでは、制御をハンドオフする代わりに、中央のエージェントから特化したエージェントのネットワークをオーケストレーションしたい場合があります。これは、エージェントをツールとしてモデル化することで実現できます。
import asyncio
from agents import Agent, Runner
spanish_agent = Agent(
name="Spanish agent",
instructions="You translate the user's message to Spanish",
)
french_agent = Agent(
name="French agent",
instructions="You translate the user's message to French",
)
orchestrator_agent = Agent(
name="orchestrator_agent",
instructions=(
"You are a translation agent. You use the tools given to you to translate. "
"If asked for multiple translations, you call the relevant tools."
),
tools=[
spanish_agent.as_tool(
tool_name="translate_to_spanish",
tool_description="Translate the user's message to Spanish",
),
french_agent.as_tool(
tool_name="translate_to_french",
tool_description="Translate the user's message to French",
),
],
)
async def main():
result = await Runner.run(orchestrator_agent, input="Say 'Hello, how are you?' in Spanish.")
print(result.final_output)
if __name__ == "__main__":
asyncio.run(main())
ツールエージェントのカスタマイズ
agent.as_tool 関数は、エージェントを簡単にツールへ変換するための便利なメソッドです。max_turns、run_config、hooks、previous_response_id、conversation_id、session、needs_approval など、一般的なランタイムオプションをサポートします。また、parameters、input_builder、include_input_schema を使用した構造化入力もサポートします。
状態オプションは、ツール呼び出しによって開始されるネストされたエージェント実行を設定します。親の実行の会話状態は自動的には継承されません。クライアント管理の履歴を親とネストされた実行との間で共有するには、両方に同じ session を明示的に渡します。Runner.run と同様に、ネストされた実行では、クライアント管理の session、または previous_response_id か conversation_id を介したサーバー管理の継続のいずれか 1 つの状態戦略を選択してください。
from agents.decorators import tool
@tool
async def run_my_agent() -> str:
"""A tool that runs the agent with custom configs"""
agent = Agent(name="My agent", instructions="...")
result = await Runner.run(
agent,
input="...",
max_turns=5,
run_config=...
)
return str(result.final_output)
ツールエージェントの構造化入力
デフォルトでは、Agent.as_tool() は単一の文字列入力({"input": "..."})を想定しますが、parameters(Pydantic モデルまたは dataclass 型)を渡すことで構造化スキーマを公開できます。
追加オプション:
include_input_schema=Trueを指定すると、生成されるネストされた入力に完全な JSON Schema が含まれます。input_builder=...を使用すると、構造化されたツール引数をネストされたエージェント入力へ変換する方法を完全にカスタマイズできます。RunContextWrapper.tool_inputには、ネストされた実行コンテキスト内で解析済みの構造化ペイロードが含まれます。
from pydantic import BaseModel, Field
class TranslationInput(BaseModel):
text: str = Field(description="Text to translate.")
source: str = Field(description="Source language.")
target: str = Field(description="Target language.")
translator_tool = translator_agent.as_tool(
tool_name="translate_text",
tool_description="Translate text between languages.",
parameters=TranslationInput,
include_input_schema=True,
)
完全に実行可能なコード例については、examples/agent_patterns/agents_as_tools_structured.py を参照してください。
ツールエージェントの承認ゲート
Agent.as_tool(..., needs_approval=...) は、function_tool と同じ承認フローを使用します。承認が必要な場合、実行は一時停止し、保留中の項目が result.interruptions に表示されます。その後、result.to_state() を使用し、state.approve(...) または state.reject(...) を呼び出してから再開します。完全な一時停止/再開パターンについては、Human-in-the-loop ガイドを参照してください。
カスタム出力抽出
場合によっては、ツールエージェントの出力を中央のエージェントへ返す前に変更したいことがあります。これは、次のような場合に役立ちます。
- サブエージェントのチャット履歴から特定の情報(JSON ペイロードなど)を抽出する。
- エージェントの最終回答を変換または再フォーマットする(Markdown をプレーンテキストや CSV に変換するなど)。
- 出力を検証する、またはエージェントのレスポンスが欠落している場合や形式が不正な場合にフォールバック値を提供する。
これを行うには、as_tool メソッドに custom_output_extractor 引数を指定します。
async def extract_json_payload(run_result: RunResult) -> str:
# Scan the agent’s outputs in reverse order until we find a JSON-like message from a tool call.
for item in reversed(run_result.new_items):
if isinstance(item, ToolCallOutputItem) and item.output.strip().startswith("{"):
return item.output.strip()
# Fallback to an empty JSON object if nothing was found
return "{}"
json_tool = data_agent.as_tool(
tool_name="get_data_json",
tool_description="Run the data agent and return only its JSON payload",
custom_output_extractor=extract_json_payload,
)
カスタム抽出関数内では、ネストされた RunResult から agent_tool_invocation にもアクセスできます。これは、ネストされた実行結果を後処理する際に、外側のツール名、呼び出し ID、または raw 引数が必要な場合に役立ちます。実行結果ガイドを参照してください。
ネストされたエージェント実行のストリーミング
as_tool に on_stream コールバックを渡すと、ネストされたエージェントが生成するストリーミングイベントを受け取りながら、ストリーム完了後に最終出力を返せます。
from agents import AgentToolStreamEvent
async def handle_stream(event: AgentToolStreamEvent) -> None:
# Inspect the underlying StreamEvent along with agent metadata.
print(f"[stream] {event['agent'].name} :: {event['event'].type}")
billing_agent_tool = billing_agent.as_tool(
tool_name="billing_helper",
tool_description="Answer billing questions.",
on_stream=handle_stream, # Can be sync or async.
)
想定される動作:
- イベントタイプは
StreamEvent["type"]を反映します:raw_response_event、run_item_stream_event、agent_updated_stream_event。 on_streamを指定すると、ネストされたエージェントが自動的にストリーミングモードで実行され、最終出力を返す前にストリームが最後まで処理されます。- ハンドラーは同期または非同期にできます。各イベントは到着順に配信されます。
- モデルのツール呼び出しを介してツールが呼び出された場合は
tool_callが存在します。直接呼び出しの場合はNoneになることがあります。 - 完全に実行可能なコード例については、
examples/agent_patterns/agents_as_tools_streaming.pyを参照してください。
条件付きのツール有効化
is_enabled パラメーターを使用すると、ランタイムでエージェントツールを条件付きで有効または無効にできます。これにより、コンテキスト、ユーザー設定、ランタイム条件に基づいて、LLM が利用できるツールを動的に絞り込めます。
import asyncio
from agents import Agent, AgentBase, Runner, RunContextWrapper
from pydantic import BaseModel
class LanguageContext(BaseModel):
language_preference: str = "french_spanish"
def french_enabled(ctx: RunContextWrapper[LanguageContext], agent: AgentBase) -> bool:
"""Enable French for French+Spanish preference."""
return ctx.context.language_preference == "french_spanish"
# Create specialized agents
spanish_agent = Agent(
name="spanish_agent",
instructions="You respond in Spanish. Always reply to the user's question in Spanish.",
)
french_agent = Agent(
name="french_agent",
instructions="You respond in French. Always reply to the user's question in French.",
)
# Create orchestrator with conditional tools
orchestrator = Agent(
name="orchestrator",
instructions=(
"You are a multilingual assistant. You use the tools given to you to respond to users. "
"You must call ALL available tools to provide responses in different languages. "
"You never respond in languages yourself, you always use the provided tools."
),
tools=[
spanish_agent.as_tool(
tool_name="respond_spanish",
tool_description="Respond to the user's question in Spanish",
is_enabled=True, # Always enabled
),
french_agent.as_tool(
tool_name="respond_french",
tool_description="Respond to the user's question in French",
is_enabled=french_enabled,
),
],
)
async def main():
context = LanguageContext(language_preference="french_spanish")
result = await Runner.run(orchestrator, "How are you?", context=context)
print(result.final_output)
asyncio.run(main())
is_enabled パラメーターは次を受け付けます。
- ブール値:
True(常に有効)またはFalse(常に無効) - 呼び出し可能な関数:
(context, agent)を受け取り、ブール値を返す関数 - 非同期関数:複雑な条件ロジックのための非同期関数
無効化されたツールはランタイムで LLM から完全に非表示になるため、次の用途に役立ちます。
- ユーザー権限に基づく機能ゲーティング
- 環境固有のツール可用性(開発環境と本番環境)
- 異なるツール設定の A/B テスト
- ランタイム状態に基づく動的なツールフィルタリング
実験的機能:Codex ツール
codex_tool は Codex CLI をラップし、エージェントがツール呼び出し中にワークスペース単位のタスク(シェル、ファイル編集、MCP ツール)を実行できるようにします。この機能は実験的であり、今後変更される可能性があります。
メインエージェントが現在の実行を離れることなく、範囲の明確なワークスペースタスクを Codex に委任する場合に使用します。デフォルトのツール名は codex です。カスタム名を設定する場合、codex または codex_ で始まる名前にする必要があります。エージェントに複数の Codex ツールを含める場合、それぞれに一意の名前を使用する必要があります。
from agents import Agent
from agents.extensions.experimental.codex import ThreadOptions, TurnOptions, codex_tool
agent = Agent(
name="Codex Agent",
instructions="Use the codex tool to inspect the workspace and answer the question.",
tools=[
codex_tool(
sandbox_mode="workspace-write",
working_directory="/path/to/repo",
default_thread_options=ThreadOptions(
model="gpt-5.5",
model_reasoning_effort="low",
network_access_enabled=True,
web_search_mode="disabled",
approval_policy="never",
),
default_turn_options=TurnOptions(
idle_timeout_seconds=60,
),
persist_session=True,
)
],
)
まず、次のオプショングループを確認してください。
- 実行対象:
sandbox_modeとworking_directoryは、Codex が操作できる場所を定義します。これらは組み合わせて使用し、作業ディレクトリが Git リポジトリ内にない場合はskip_git_repo_check=Trueを設定します。 - スレッドのデフォルト:
default_thread_options=ThreadOptions(...)は、モデル、推論エフォート、承認ポリシー、追加ディレクトリ、ネットワークアクセス、Web 検索モードを設定します。従来のweb_search_enabledよりもweb_search_modeを優先してください。 - ターンのデフォルト:
default_turn_options=TurnOptions(...)は、idle_timeout_secondsや任意のキャンセル用signalなど、ターン単位の動作を設定します。 - ツール I/O:ツール呼び出しには、
{ "type": "text", "text": ... }または{ "type": "local_image", "path": ... }を持つinputs項目を少なくとも 1 つ含める必要があります。output_schemaを使用すると、Codex の構造化されたレスポンスを必須にできます。
スレッドの再利用と永続化は別々に制御されます。
persist_session=Trueは、同じツールインスタンスへの反復呼び出しで 1 つの Codex スレッドを再利用します。use_run_context_thread_id=Trueは、同じ変更可能なコンテキストオブジェクトを共有する複数の実行にわたり、実行コンテキスト内でスレッド ID を保存して再利用します。- スレッド ID の優先順位は、呼び出し単位の
thread_id、実行コンテキストのスレッド ID(有効な場合)、設定済みのthread_idオプションの順です。 - デフォルトの実行コンテキストキーは、
name="codex"の場合はcodex_thread_id、name="codex_<suffix>"の場合はcodex_thread_id_<suffix>です。run_context_thread_id_keyを使用して上書きできます。
ランタイム設定:
- 認証:
CODEX_API_KEY(推奨)またはOPENAI_API_KEYを設定するか、codex_options={"api_key": "..."}を渡します。 - ランタイム:
codex_options.base_urlは CLI のベース URL を上書きします。 - バイナリの解決:CLI のパスを固定するには、
codex_options.codex_path_override(またはCODEX_PATH)を設定します。それ以外の場合、SDK はPATHからcodexを解決し、見つからなければ同梱のベンダーバイナリを使用します。 - 環境:
codex_options.envはサブプロセス環境を完全に制御します。指定した場合、サブプロセスはos.environを継承しません。 - ストリーム制限:
codex_options.codex_subprocess_stream_limit_bytes(またはOPENAI_AGENTS_CODEX_SUBPROCESS_STREAM_LIMIT_BYTES)は、stdout/stderr リーダーの上限を制御します。有効範囲は65536~67108864で、デフォルトは8388608です。 - ストリーミング:
on_streamは、スレッド/ターンのライフサイクルイベントと項目イベント(reasoning、command_execution、mcp_tool_call、file_change、web_search、todo_list、errorの項目更新)を受け取ります。 - 出力:実行結果には
response、usage、thread_idが含まれます。使用量はRunContextWrapper.usageに追加されます。
リファレンス:
- Codex ツール API リファレンス
- ThreadOptions リファレンス
- TurnOptions リファレンス
- 完全に実行可能なコード例については、
examples/tools/codex.pyとexamples/tools/codex_same_thread.pyを参照してください。