メインコンテンツへスキップ
datetime Server Tool はモデルに現在の日付と時刻を提供します。

クイックスタート

{
  "model": "openai/gpt-5.4",
  "messages": [{"role": "user", "content": "What day of the week is today, and how many days until the end of the year?"}],
  "tools": [{"type": "arouter", "arouter": {"id": "datetime"}}]
}

設定

パラメータデフォルト説明
idstring"datetime" である必要があります
timezonestring"UTC"IANA タイムゾーン識別子(例:"America/New_York""Asia/Shanghai""Europe/London"

ツールのレスポンス形式

{
  "datetime": "2026-04-03T14:32:00Z",
  "date": "2026-04-03",
  "time": "14:32:00",
  "timezone": "UTC",
  "day_of_week": "Friday",
  "unix_timestamp": 1775319120
}

ユースケース

スケジューリングとプランニング:
response = client.chat.completions.create(
    model="openai/gpt-5.4",
    messages=[{"role": "user", "content": "Create a 2-week project plan starting from today."}],
    tools=[{"type": "arouter", "arouter": {"id": "datetime", "timezone": "Asia/Shanghai"}}],
)

価格

datetime ツールは無料です——通常の LLM Token コストを超える追加料金はかかりません。

次のステップ