> ## Documentation Index
> Fetch the complete documentation index at: https://developer.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

> Box AIで利用可能な、コアAIモデルおよびお客様の希望で有効化できるAIモデル。アクセス権限、機能レベル、API名が含まれます。

# サポートされているAIモデル

export const SignupCTA = ({children}) => {
  return <div className="flex flex-wrap items-center gap-4 p-5 rounded-lg border border-gray-200 dark:border-gray-700 my-6" style={{
    background: "linear-gradient(135deg, rgba(0, 97, 213, 0.06), rgba(0, 97, 213, 0.02))"
  }}>
      <div className="flex-1 text-sm leading-relaxed text-gray-700 dark:text-gray-300" style={{
    minWidth: "280px"
  }}>
        {children}
      </div>
      <div className="flex flex-col items-center gap-2">
        <a href="https://account.box.com/signup/developer#ty9l3" className="signup-cta-button inline-flex items-center whitespace-nowrap px-5 py-2 text-sm font-semibold text-white no-underline">
          {translate("Get started for free")}
        </a>
        <a href="https://account.box.com/developers/console" className="signup-cta-login text-xs text-gray-500 dark:text-gray-400 no-underline whitespace-nowrap">
          {translate("Already have an account? Log in")}
        </a>
      </div>
    </div>;
};

export const CustomCard = ({icon, title, href, tags, children, ...props}) => {
  const handleClick = e => {
    if (href) {
      e.preventDefault();
      window.location.href = href;
    }
  };
  const getDescription = () => {
    if (children) {
      if (typeof children === "string") {
        return children;
      } else {
        const childrenArray = Array.isArray(children) ? children : [children];
        for (const child of childrenArray) {
          if (typeof child === "string") {
            return child;
          } else if (child && typeof child === "object" && child.props?.children) {
            const childText = child.props.children;
            if (typeof childText === "string") {
              return childText;
            }
          }
        }
      }
    }
    return null;
  };
  const description = getDescription();
  const isCustomSvg = icon?.includes('/') || icon?.includes('.svg');
  const iconSize = isCustomSvg ? 48 : 24;
  return <a href={href} onClick={handleClick} className="flex flex-col p-6 rounded-lg border transition-all duration-200 cursor-pointer text-inherit no-underline box-border mb-3
        border-gray-200 dark:border-gray-700
        bg-white dark:bg-gray-900
        hover:border-blue-500 dark:hover:border-blue-400
        hover:shadow-md dark:hover:shadow-lg" {...props}>
      <div className="w-12 h-12 bg-purple-100 dark:bg-purple-900 rounded-lg flex items-center justify-center mb-4 overflow-hidden">
        <div className="flex items-center justify-center w-full h-full">
          <Icon icon={icon} size={iconSize} />
        </div>
      </div>
      <h3 className="text-base font-semibold text-gray-900 dark:text-gray-50 mb-3 text-left break-words mt-0">{title}</h3>
      {description && <div className="text-sm leading-relaxed text-gray-700 dark:text-gray-300 flex-1">{description}</div>}
      {tags && tags.length > 0 && <div className="flex flex-wrap gap-2 mt-auto pt-4">
          {tags.map((tag, index) => {
    const bgColor = tag.bgColor || tag.backgroundColor || "#e5e7eb";
    return <span key={index} className="px-2.5 py-1 rounded-full text-xs font-semibold uppercase tracking-wide text-gray-900" style={{
      backgroundColor: bgColor
    }}>
                {tag.text || tag.label}
              </span>;
  })}
        </div>}
    </a>;
};

export const Link = ({href, children, className, ...props}) => {
  const localizedHref = localizeLink(href);
  return <a href={localizedHref} className={className} {...props}>
      {children}
    </a>;
};

Boxでは、さまざまなAIモデルがサポートされており、[アクセスレベル](#access-levels)と[機能レベル](#capability-tiers)という2つの側面で分類されます。

## アクセスレベル

| レベル                                            | 説明                                                                              | 必須の構成 |
| ---------------------------------------------- | ------------------------------------------------------------------------------- | ----- |
| [**コアモデル**](#core-box-ai-models)               | Box AIに組み込まれており、デフォルトですべてのお客様が利用できます。                                           | なし    |
| [**顧客希望で有効化できるモデル**](#customer-enabled-models) | Box管理者が管理コンソールを使用するか、Boxにリクエストするかして、有効にする必要があります。一部のモデルは、追加の条件や料金の対象になる場合があります。 | はい    |

## 機能レベル

| レベル          | 説明                                          | 最適な用途                                                      |
| ------------ | ------------------------------------------- | ---------------------------------------------------------- |
| **標準モデル**    | 高速でコスト効率のよいパフォーマンス                          | 基本的な要約、Q\&A、短いまたはシンプルなドキュメントからの構造化データの抽出。大量のあまり複雑でないユースケース |
| **プレミアムモデル** | 高度な推論、大きなコンテキストウィンドウ、複雑なコンテンツに対する優れたパフォーマンス | マルチステップ推論、大規模なメタデータ階層、長いドキュメントまたは非構造化ドキュメント、ドメイン固有のコンテンツ   |

<Note>
  モデルは、顧客希望で有効化できるモデルかつプレミアムモデルにすることも、コアモデルかつ標準モデルにすることもできます。つまり、アクセルレベルと機能レベルは、それぞれ独立した分類です (たとえば、モデルは、アクセスレベルに関係なくどちらの機能レベルにもなる可能性があります)。この2つの分類は相互に補完します。
</Note>

## モデルの使用

サポートされているAIモデルの使用方法を以下に示します。

* <Link href="/reference/get-ai-agent-default">AIエージェントのデフォルト構成</Link>を取得します。
* <Link href="/reference/post-ai-ask">`POST 2.0/ai/ask`</Link>、<Link href="/reference/post-ai-text-gen">`POST 2.0/ai/text_gen`</Link>、<Link href="/reference/post-ai-extract">`POST 2.0/ai/extract`</Link>、<Link href="/reference/post-ai-extract-structured">`POST 2.0/ai/extract_structured`</Link>の各エンドポイントで使用されるAIエージェントの構成を上書きします。

APIコールで`model`パラメータを使用する際は、以下の各モデルカードに表示されている**API名**を使用します。

たとえば、特定のモデルのAIエージェントの構成を取得するには、<Link href="/reference/get-ai-agent-default#param-model">model</Link>パラメータを使用して、API名`openai__gpt_5_mini`を指定します。プロバイダ名の後に**2つのアンダースコア**を使用していることを確認してください。

<Note>
  このリストはモデルの提供状況により変更される可能性があります。
</Note>

<SignupCTA>
  無料のDeveloperアカウントを作成すると、Box AI APIを通じてこれらのAIモデルにアクセスできます。APIコールの実行を開始して、要約や抽出をテストしましょう。
</SignupCTA>

## コアモデル

Box AIには以下のモデルが搭載されています。Box AIと統合されているこれらのモデルは、エンタープライズグレードの標準に準拠しながら、さまざまなユースケースを支援します。各モデルの機能、対象のアプリケーション、利用に関して該当するガイドラインなどの情報については、以下をご確認ください。

<Warning>
  **プレビュー**モードで提供されているモデルはパフォーマンスが大規模にテストされていないため、出力の品質、提供状況、精度にはばらつきがある可能性があります。
</Warning>

<AccordionGroup>
  <Accordion title="OpenAI">
    <Columns cols={2}>
      <Card title="openai__gpt_5_5" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/openai.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=84744284448f6109a9058cef53c3e01c" href={localizeLink("/guides/box-ai/ai-models/openai-gpt-5-5-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/openai.svg">
        最も複雑な専門業務に対応した最先端モデル

        <span className="badge-group">
          <Badge color="orange">プレミアム</Badge> <Badge color="gray">Box Agentに対応</Badge>
        </span>
      </Card>

      <Card title="openai__gpt_5_4" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/openai.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=84744284448f6109a9058cef53c3e01c" href={localizeLink("/guides/box-ai/ai-models/openai-gpt-5-4-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/openai.svg">
        幅広い一般作業と大半のコーディングタスクの両方を対象とするマルチモーダルモデル

        <span className="badge-group">
          <Badge color="orange">プレミアム</Badge> <Badge color="gray">Box Agentに対応</Badge>
        </span>
      </Card>

      <Card title="openai__gpt_5_4_mini" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/openai.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=84744284448f6109a9058cef53c3e01c" href={localizeLink("/guides/box-ai/ai-models/openai-gpt-5-4-mini-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/openai.svg">
        GPT-5.4の高速かつコスト効率に優れたバージョン

        <span className="badge-group">
          <Badge color="green">標準</Badge>
        </span>
      </Card>

      <Card title="openai__gpt_5_2" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/openai.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=84744284448f6109a9058cef53c3e01c" href={localizeLink("/guides/box-ai/ai-models/openai-gpt-5-2-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/openai.svg">
        さまざまな業界でのコーディングやエージェント型タスク向けのマルチモーダルモデル

        <span className="badge-group">
          <Badge color="orange">プレミアム</Badge> <Badge color="gray">Box Agentに対応</Badge>
        </span>
      </Card>

      <Card title="openai__gpt_5_1" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/openai.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=84744284448f6109a9058cef53c3e01c" href={localizeLink("/guides/box-ai/ai-models/openai-gpt-5-1-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/openai.svg">
        エンタープライズグレードのパフォーマンスと適応的推論を備えたマルチモーダルモデル

        <span className="badge-group">
          <Badge color="orange">プレミアム</Badge>
        </span>
      </Card>

      <Card title="openai__gpt_5" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/openai.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=84744284448f6109a9058cef53c3e01c" href={localizeLink("/guides/box-ai/ai-models/openai-gpt-5-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/openai.svg">
        高度な推論機能と長いコンテキストの理解を備えたマルチモーダルモデル

        <span className="badge-group">
          <Badge color="orange">プレミアム</Badge>
        </span>
      </Card>

      <Card title="openai__gpt_5_mini" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/openai.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=84744284448f6109a9058cef53c3e01c" href={localizeLink("/guides/box-ai/ai-models/openai-gpt-5-mini-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/openai.svg">
        明確に定義されたタスクや正確なプロンプト向けに設計され、軽量のタスクに適したモデル

        <span className="badge-group">
          <Badge color="green">標準</Badge>
        </span>
      </Card>

      <Card title="azure__openai__text_embedding_ada_002" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/openai.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=84744284448f6109a9058cef53c3e01c" href={localizeLink("/guides/box-ai/ai-models/azure-text-embedding-ada-002-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/openai.svg">
        テキスト検索、コード検索、文の類似性判定向けの第2世代埋め込みモデル

        <span className="badge-group">
          <Badge color="gray">埋め込み</Badge> <Badge color="green">標準</Badge> <Badge color="blue">ISMAP</Badge> <Badge color="blue">FedRAMP Moderate</Badge> <Badge color="blue">FedRAMP High</Badge> <Badge color="blue">DoD IL2</Badge>
        </span>
      </Card>
    </Columns>
  </Accordion>

  <Accordion title="Google">
    <Columns cols={2}>
      <Card title="google__gemini_3_5_flash" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/gemini.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=0d2975259aaa026bd24aa72adedc55f6" href={localizeLink("/guides/box-ai/ai-models/google-gemini-3-5-flash-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/gemini.svg">
        要求の厳しいエンタープライズタスクに対応する、高度な推論機能を備えた高速マルチモーダルモデル

        <span className="badge-group">
          <Badge color="orange">Premium</Badge> <Badge color="blue">FedRAMP Moderate</Badge> <Badge color="blue">FedRAMP High</Badge> <Badge color="blue">DoD IL4</Badge> <Badge color="blue">DoD IL5</Badge> <Badge color="gray">Box Agentに対応</Badge>
        </span>
      </Card>

      <Card title="google__gemini_3_1_flash_lite" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/gemini.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=0d2975259aaa026bd24aa72adedc55f6" href={localizeLink("/guides/box-ai/ai-models/google-gemini-3-1-flash-lite-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/gemini.svg">
        高速なタスクやコスト効率のよいタスク向けのGeminiマルチモーダルモデル

        <span className="badge-group">
          <Badge color="green">標準</Badge> <Badge color="blue">FedRAMP High</Badge>
        </span>
      </Card>

      <Card title="google__gemini_2_5_pro" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/gemini.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=0d2975259aaa026bd24aa72adedc55f6" href={localizeLink("/guides/box-ai/ai-models/google-gemini-2-5-pro-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/gemini.svg">
        100万トークンのコンテキストウィンドウと高度な推論機能が備わっているマルチモーダルモデル

        <span className="badge-group">
          <Badge color="orange">プレミアム</Badge> <Badge color="blue">ISMAP</Badge> <Badge color="blue">FedRAMP Moderate</Badge> <Badge color="blue">FedRAMP High</Badge> <Badge color="blue">DoD IL5</Badge>
        </span>
      </Card>

      <Card title="google__gemini_2_5_flash" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/gemini.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=0d2975259aaa026bd24aa72adedc55f6" href={localizeLink("/guides/box-ai/ai-models/google-gemini-2-5-flash-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/gemini.svg">
        思考機能などの豊富な機能が備わっているマルチモーダルモデル

        <span className="badge-group">
          <Badge color="green">標準</Badge> <Badge color="blue">ISMAP</Badge> <Badge color="blue">FedRAMP Moderate</Badge> <Badge color="blue">FedRAMP High</Badge> <Badge color="blue">DoD IL5</Badge>
        </span>
      </Card>

      <Card title="google__gemini_2_0_flash_001" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/gemini.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=0d2975259aaa026bd24aa72adedc55f6" href={localizeLink("/guides/box-ai/ai-models/google-gemini-2-0-flash-001-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/gemini.svg">
        大規模で大量かつ高頻度のタスクに最適になるよう設計されたマルチモーダルモデル

        <span className="badge-group">
          <Badge color="green">標準</Badge> <Badge color="blue">ISMAP</Badge> <Badge color="blue">FedRAMP Moderate</Badge> <Badge color="blue">FedRAMP High</Badge> <Badge color="blue">DoD IL5</Badge>
        </span>
      </Card>

      <Card title="google__gemini_2_0_flash_lite_preview" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/gemini.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=0d2975259aaa026bd24aa72adedc55f6" href={localizeLink("/guides/box-ai/ai-models/google-gemini-2-0-flash-lite-preview-02-05")} width="16" height="16" data-path="static/guides-box-ai-ai-models/gemini.svg">
        軽量のタスクを処理するように設計されたマルチモーダルモデル

        <span className="badge-group">
          <Badge color="green">標準</Badge> <Badge color="blue">ISMAP</Badge> <Badge color="blue">FedRAMP Moderate</Badge> <Badge color="blue">FedRAMP High</Badge> <Badge color="blue">DoD IL5</Badge>
        </span>
      </Card>
    </Columns>
  </Accordion>

  <Accordion title="Anthropic">
    <Columns cols={2}>
      <Card title="aws__claude_sonnet_5" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/claude.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=bd3fefa10e30eac617a43ae7609ac43a" href={localizeLink("/guides/box-ai/ai-models/aws-claude-sonnet-5-model-card")} width="640" height="640" data-path="static/guides-box-ai-ai-models/claude.svg">
        日常的な使用、大規模な実稼働環境、複雑なタスク向けに構築された、強力で汎用性の高いモデル

        <span className="badge-group">
          <Badge color="orange">Premium</Badge> <Badge color="blue">FedRAMP Moderate</Badge> <Badge color="gray">Box Agentに対応</Badge>
        </span>
      </Card>

      <Card title="aws__claude_4_8_opus" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/claude.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=bd3fefa10e30eac617a43ae7609ac43a" href={localizeLink("/guides/box-ai/ai-models/aws-claude-4-8-opus-model-card")} width="640" height="640" data-path="static/guides-box-ai-ai-models/claude.svg">
        Anthropicのプレミアムモデルで、Amazon Web Services上でホストされます

        <span className="badge-group">
          <Badge color="orange">Premium</Badge> <Badge color="blue">FedRAMP Moderate</Badge> <Badge color="gray">Box Agentに対応</Badge>
        </span>
      </Card>

      <Card title="aws__claude_4_7_opus" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/claude.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=bd3fefa10e30eac617a43ae7609ac43a" href={localizeLink("/guides/box-ai/ai-models/aws-claude-4-7-opus-model-card")} width="640" height="640" data-path="static/guides-box-ai-ai-models/claude.svg">
        コーディング、企業向けエージェント、専門的業務に対応したマルチモーダルモデル

        <span className="badge-group">
          <Badge color="orange">プレミアム</Badge> <Badge color="blue">ISMAP</Badge> <Badge color="blue">FedRAMP Moderate</Badge> <Badge color="gray">Box Agentに対応</Badge>
        </span>
      </Card>

      <Card title="aws__claude_4_6_opus" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/claude.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=bd3fefa10e30eac617a43ae7609ac43a" href={localizeLink("/guides/box-ai/ai-models/aws-claude-4-6-opus-model-card")} width="640" height="640" data-path="static/guides-box-ai-ai-models/claude.svg">
        100万トークンのコンテキストウィンドウが備わっている、複雑なタスク向けのマルチモーダルモデル

        <span className="badge-group">
          <Badge color="orange">プレミアム</Badge> <Badge color="blue">ISMAP</Badge> <Badge color="blue">FedRAMP Moderate</Badge> <Badge color="gray">Box Agentに対応</Badge>
        </span>
      </Card>

      <Card title="aws__claude_4_6_sonnet" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/claude.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=bd3fefa10e30eac617a43ae7609ac43a" href={localizeLink("/guides/box-ai/ai-models/aws-claude-4-6-sonnet-model-card")} width="640" height="640" data-path="static/guides-box-ai-ai-models/claude.svg">
        100万トークンのコンテキストウィンドウが備わっている、複雑なタスク向けのマルチモーダルモデル

        <span className="badge-group">
          <Badge color="orange">プレミアム</Badge> <Badge color="blue">ISMAP</Badge> <Badge color="blue">FedRAMP Moderate</Badge> <Badge color="gray">Box Agentに対応</Badge>
        </span>
      </Card>

      <Card title="aws__claude_4_5_opus" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/claude.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=bd3fefa10e30eac617a43ae7609ac43a" href={localizeLink("/guides/box-ai/ai-models/aws-claude-4-5-opus-model-card")} width="640" height="640" data-path="static/guides-box-ai-ai-models/claude.svg">
        最高峰のインテリジェンスと実用的な性能を兼ね備えたプレミアムモデル

        <span className="badge-group">
          <Badge color="orange">プレミアム</Badge> <Badge color="blue">ISMAP</Badge> <Badge color="blue">FedRAMP Moderate</Badge> <Badge color="gray">Box Agentに対応</Badge>
        </span>
      </Card>

      <Card title="aws__claude_4_5_sonnet" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/claude.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=bd3fefa10e30eac617a43ae7609ac43a" href={localizeLink("/guides/box-ai/ai-models/aws-claude-4-5-sonnet-model-card")} width="640" height="640" data-path="static/guides-box-ai-ai-models/claude.svg">
        複雑なエージェント、コーディング、自律的なマルチステップワークフローに優れているモデル

        <span className="badge-group">
          <Badge color="orange">プレミアム</Badge> <Badge color="blue">ISMAP</Badge> <Badge color="blue">FedRAMP Moderate</Badge> <Badge color="gray">Box Agentに対応</Badge>
        </span>
      </Card>

      <Card title="aws__claude_4_5_haiku" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/claude.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=bd3fefa10e30eac617a43ae7609ac43a" href={localizeLink("/guides/box-ai/ai-models/aws-claude-4-5-haiku-model-card")} width="640" height="640" data-path="static/guides-box-ai-ai-models/claude.svg">
        低レイテンシアプリケーションに最適な、ほぼ最先端のインテリジェンスを備えた高速でコスト効率のよいモデル

        <span className="badge-group">
          <Badge color="green">標準</Badge> <Badge color="blue">ISMAP</Badge> <Badge color="blue">FedRAMP Moderate</Badge> <Badge color="gray">Box Agentに対応</Badge>
        </span>
      </Card>
    </Columns>
  </Accordion>

  <Accordion title="Meta">
    <Columns cols={2}>
      <Card title="ibm__llama_4_maverick" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/meta.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=f7b4cbde68a60d7c515774808c8d50d1" href={localizeLink("/guides/box-ai/ai-models/ibm-llama-4-maverick-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/meta.svg">
        100万トークンのコンテキストウィンドウと高度な推論機能が備わっているマルチモーダルモデル

        <span className="badge-group">
          <Badge color="green">標準</Badge>
        </span>
      </Card>
    </Columns>
  </Accordion>

  <Accordion title="Mistral AI">
    <Columns cols={2}>
      <Card title="ibm__mistral_medium_2505" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/mistral.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=f130e27cd17d2cbcce4ad92affe1940b" href={localizeLink("/guides/box-ai/ai-models/ibm-mistral-medium-3-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/mistral.svg">
        コーディングや高度な推論に対応した、高性能のエンタープライズモデル

        <span className="badge-group">
          <Badge color="red">プレビュー</Badge> <Badge color="green">標準</Badge>
        </span>
      </Card>

      <Card title="ibm__mistral_small_3_1_24b_instruct_2503" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/mistral.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=f130e27cd17d2cbcce4ad92affe1940b" href={localizeLink("/guides/box-ai/ai-models/ibm-mistral-small-3-1-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/mistral.svg">
        低レイテンシで処理の速いオープンソースのマルチモーダルモデル

        <span className="badge-group">
          <Badge color="red">プレビュー</Badge> <Badge color="green">標準</Badge>
        </span>
      </Card>
    </Columns>
  </Accordion>
</AccordionGroup>

## 顧客希望で有効化できるモデル

Box AIの一部の顧客は、リクエストに応じて追加のAIモデルを有効にすることができます。または、それらのモデルが管理コンソールを通じて利用できるようになった際に有効にできます。これらのモデルの使用は、追加の条件の対象になる場合があります。顧客希望で有効化できるモデルを選択すると、顧客は、選択した追加の[サブプロセッサ][subprocessors]によって自身のデータが処理される可能性があることに同意したことになります。

<Warning>
  **ベータ**モードで提供されているモデルは、現状のままでの利用となります。
</Warning>

<AccordionGroup>
  <Accordion title="OpenAI">
    <Columns cols={2}>
      <Card title="openai__gpt_o3" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/openai.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=84744284448f6109a9058cef53c3e01c" href={localizeLink("/guides/box-ai/ai-models/openai-gpt-o3-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/openai.svg">
        複雑なマルチステップタスクの処理で非常に効率的なマルチモーダルモデル

        <span className="badge-group">
          <Badge color="purple">ベータ</Badge> <Badge color="orange">プレミアム</Badge>
        </span>
      </Card>
    </Columns>
  </Accordion>

  <Accordion title="Google">
    <Columns cols={2}>
      <Card title="google__gemini_3_1_pro" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/gemini.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=0d2975259aaa026bd24aa72adedc55f6" href={localizeLink("/guides/box-ai/ai-models/google-gemini-3-1-pro-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/gemini.svg">
        高度な推論機能と大きなコンテキストウィンドウを備えた、複雑なタスク向けのモデル

        <span className="badge-group">
          <Badge color="purple">ベータ</Badge> <Badge color="orange">プレミアム</Badge>
        </span>
      </Card>

      <Card title="google__gemini_3_flash" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/gemini.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=0d2975259aaa026bd24aa72adedc55f6" href={localizeLink("/guides/box-ai/ai-models/google-gemini-3-flash-model-card")} width="16" height="16" data-path="static/guides-box-ai-ai-models/gemini.svg">
        幅広いタスクで速さと効率を実現するよう設計されたマルチモーダルモデル

        <span className="badge-group">
          <Badge color="purple">ベータ</Badge> <Badge color="green">標準</Badge>
        </span>
      </Card>
    </Columns>
  </Accordion>

  <Accordion title="Anthropic">
    <Columns cols={2}>
      <Card title="aws__claude_fable_5" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/claude.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=bd3fefa10e30eac617a43ae7609ac43a" href={localizeLink("/guides/box-ai/ai-models/aws-claude-fable-5-model-card")} width="640" height="640" data-path="static/guides-box-ai-ai-models/claude.svg">
        Anthropicのプレミアムモデルで、Amazon Web Services上でホストされます

        <span className="badge-group">
          <Badge color="purple">Beta</Badge> <Badge color="orange">Premium</Badge> <Badge color="gray">Box Agentに対応</Badge>
        </span>
      </Card>
    </Columns>
  </Accordion>
</AccordionGroup>

## デフォルトモデル

以下の表には、エージェントの構成を上書きしない場合に使用されるデフォルトのAIモデルを示しています。実行されるモデルは、エージェントのタイプ、プロバイダ、機能レベルによって決まります。

<Note>以下に示すデフォルトの設定は、特定の構成または要件がある一部の顧客には適用されない場合があります。</Note>

### 従来のエージェント

従来のエージェントとは、単純なQ\&Aやドキュメントの要約など、基本的なシングルステップタスクを処理するように設計された第1世代のBox AI機能を指します。下の表では、特定のユースケースに使用可能なモデルを示しています。

| ユースケース                    | プロバイダ          | 標準バージョン用のモデル                                                                                    | Advancedまたは強化バージョン用のモデル                                                                       |
| ------------------------- | -------------- | ----------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
| Documents、Notes、HubsのQ\&A | OpenAI (デフォルト) | <Link href="/guides/box-ai/ai-models/openai-gpt-5-mini-model-card">GPT-5 mini</Link>            | <Link href="/guides/box-ai/ai-models/openai-gpt-5-2-model-card">GPT-5.2</Link>                |
|                           | Claude         | <Link href="/guides/box-ai/ai-models/aws-claude-4-5-sonnet-model-card">Claude 4.5 Sonnet</Link> | <Link href="/guides/box-ai/ai-models/aws-claude-4-5-opus-model-card">Claude 4.5 Opus</Link>   |
|                           | Llama          | <Link href="/guides/box-ai/ai-models/ibm-llama-4-maverick-model-card">Llama 4 Maverick</Link>   | <Link href="/guides/box-ai/ai-models/ibm-llama-4-maverick-model-card">Llama 4 Maverick</Link> |

### Boxエージェント

Boxエージェントは、高度な推論機能と調整機能を備え、Boxのコンテンツエコシステム全体で複雑なマルチステップワークフローを計画して実行できる、次世代のインテリジェントアシスタントです。下の表では、特殊なエージェントタイプごとに使用可能なモデルを示しています。

| エージェント         | 標準バージョン用のモデル                                                                                     | Proまたは強化バージョン用のモデル                                                                              |
| -------------- | ------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| Box Agent      | <Link href="/guides/box-ai/ai-models/google-gemini-3-5-flash-model-card">Gemini 3.5 Flash</Link> | <Link href="/guides/box-ai/ai-models/aws-claude-4-6-sonnet-model-card">Claude Sonnet 4.6</Link> |
| 抽出エージェント       | <Link href="/guides/box-ai/ai-models/google-gemini-2-5-flash-model-card">Gemini 2.5 Flash</Link> | <Link href="/guides/box-ai/ai-models/google-gemini-2-5-pro-model-card">Gemini 2.5 Pro</Link>    |
| セキュリティ分類エージェント | <Link href="/guides/box-ai/ai-models/google-gemini-2-5-flash-model-card">Gemini 2.5 Flash</Link> | なし                                                                                              |
| 脅威分析エージェント     | <Link href="/guides/box-ai/ai-models/google-gemini-2-5-flash-model-card">Gemini 2.5 Flash</Link> | なし                                                                                              |

## 廃止されたモデル

次のモデルが廃止され、Box AIで利用できなくなりました。

| モデル名                      | API名                                 |
| ------------------------- | ------------------------------------ |
| Azure OpenAI GPT-4.1      | `azure__openai__gpt_4_1`             |
| Azure OpenAI GPT-4.1 mini | `azure__openai__gpt_4_1_mini`        |
| Azure OpenAI GPT-4o       | `azure__openai__gpt_4o`              |
| Azure OpenAI GPT-4o mini  | `azure__openai__gpt_4o_mini`         |
| Claude 4 Opus             | `aws__claude_4_opus`                 |
| Claude 4 Sonnet           | `aws__claude_4_sonnet`               |
| Titan Text Lite           | `aws__titan_text_lite`               |
| Gemini 3 Pro              | `google__gemini_3_pro`               |
| Llama 4 Scout             | `ibm__llama_4_scout`                 |
| Llama 3.2 90B Vision      | `ibm__llama_3_2_90b_vision_instruct` |
| Grok 3 Beta               | `xai__grok_3_beta`                   |
| Grok 3 mini Beta          | `xai__grok_3_mini_beta`              |

[azure-ai-mini-4o-model]: https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/models?tabs=python-secure#gpt-4o-and-gpt-4-turbo

[vertex-ai-model]: https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#models

[vertex-ai-gemini-models]: https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models#gemini-models

[vertex-text-models]: https://cloud.google.com/vertex-ai/generative-ai/docs/model-reference/text

[azure-ai-embeddings]: https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/models#embeddings

[aws-claude]: https://aws.amazon.com/bedrock/claude/

[aws-titan]: https://aws.amazon.com/bedrock/titan/

[subprocessors]: https://www.box.com/legal/subprocessors
