> ## 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.

# Supported AI models

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">
          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">
          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 = href;
  return <a href={localizedHref} className={className} {...props}>
      {children}
    </a>;
};

Box supports a variety of AI models, categorized along two dimensions: [access level](#access-levels) and [capability tier](#capability-tiers).

## Access levels

| Level                                                   | Description                                                                                                                           | Configuration Required |
| ------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
| [**Core models**](#core-box-ai-models)                  | Built into Box AI and available by default for all customers                                                                          | None                   |
| [**Customer-enabled models**](#customer-enabled-models) | Require activation by Box admins in the Admin Console or a request to Box. Some models may be subject to additional terms or pricing. | Yes                    |

## Capability tiers

| Tier                | Description                                                                       | Best For                                                                                                                       |
| ------------------- | --------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------ |
| **Standard models** | High-speed, cost-efficient performance                                            | Basic summarization, Q\&A, structured data extraction from shorter or simpler documents. High-volume, low-complexity use cases |
| **Premium models**  | Advanced reasoning, larger context windows, better performance on complex content | Multi-step reasoning, large taxonomies, lengthy or unstructured documents, domain-specific content                             |

<Note>
  A model can be both customer-enabled and premium, or core and standard. In other words, access level and capability tiers are independent categorizations (for example, models can be either capability tier regardless of access level). The two categorizations are complementary.
</Note>

## Using models

How to use the supported AI models:

* Get the <Link href="/reference/get-ai-agent-default">default AI agent configuration</Link>.
* Override the AI agent configuration used in <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> endpoints.

When using the `model` parameter in your API calls, use the **API Name** visible on each model card listed below.

For example, to get the AI agent configuration for a specific model, use the <Link href="/reference/get-ai-agent-default#param-model">model</Link> parameter and provide the `azure__openai__gpt_4o_mini` API name. Make sure you use **two underscores** after the provider name.

<Note>
  The list may change depending on the model availability.
</Note>

<SignupCTA>
  A free developer account gives you access to these AI models through the Box AI API. Start making API calls to test summarization, extraction, and more.
</SignupCTA>

## Core models

Box AI is powered by the following AI models. These models are integrated with Box AI to facilitate various use cases while adhering to enterprise grade standards. Below, you’ll find information about each model, including its capabilities, intended applications, and applicable usage guidelines.

<Warning>
  Models offered in **Preview** mode have not been fully performance-tested at scale. You may experience variability in output quality, availability, and accuracy.
</Warning>

<AccordionGroup>
  <Accordion title="OpenAI">
    <Columns cols={2}>
      <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="/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">
        Multimodal model for both broad general-purpose work and most coding tasks

        <span className="badge-group">
          <Badge color="orange">Premium</Badge>
          <Badge color="gray">Compatible with Box Agent</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="/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">
        Multimodal model for coding and agentic tasks across various industries

        <span className="badge-group">
          <Badge color="orange">Premium</Badge>
          <Badge color="gray">Compatible with 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="/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">
        Multimodal model with enterprise-grade performance and adaptive reasoning

        <span className="badge-group">
          <Badge color="orange">Premium</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="/guides/box-ai/ai-models/openai-gpt-5-model-card" width="16" height="16" data-path="static/guides-box-ai-ai-models/openai.svg">
        Multimodal model with advanced reasoning and long-context understanding

        <span className="badge-group">
          <Badge color="orange">Premium</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="/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">
        Model designed for well-defined tasks and precise prompts, suitable for lightweight tasks

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

      <Card title="azure__openai__gpt_4_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="/guides/box-ai/ai-models/azure-openai-gpt-4-1-model-card" width="16" height="16" data-path="static/guides-box-ai-ai-models/openai.svg">
        Multimodal model, highly efficient in handling complex, multi-step tasks

        <span className="badge-group">
          <Badge color="orange">Premium</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>

      <Card title="azure__openai__gpt_4_1_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="/guides/box-ai/ai-models/azure-openai-gpt-4-1-mini-model-card" width="16" height="16" data-path="static/guides-box-ai-ai-models/openai.svg">
        Multimodal model designed to handle lightweight tasks and precise prompts

        <span className="badge-group">
          <Badge color="green">Standard</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>

      <Card title="azure__openai__gpt_4o" 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="/guides/box-ai/ai-models/azure-openai-gpt-4o-model-card" width="16" height="16" data-path="static/guides-box-ai-ai-models/openai.svg">
        Multimodal model, highly efficient in handling complex, multi-step tasks

        <span className="badge-group">
          <Badge color="orange">Premium</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>

      <Card title="azure__openai__gpt_4o_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="/guides/box-ai/ai-models/azure-openai-gpt-4o-mini-model-card" width="16" height="16" data-path="static/guides-box-ai-ai-models/openai.svg">
        Multimodal model for lightweight tasks and precise prompts, best suited for focused tasks

        <span className="badge-group">
          <Badge color="green">Standard</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>

      <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="/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">
        2nd-generation embedding model for text search, code search, and sentence similarity

        <span className="badge-group">
          <Badge color="gray">Embeddings</Badge>
          <Badge color="green">Standard</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_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="/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">
        Multimodal model with a 1 million token context window and advanced reasoning capabilities

        <span className="badge-group">
          <Badge color="orange">Premium</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="/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">
        Multimodal model offering well-round capabilites, including thinking capabilities

        <span className="badge-group">
          <Badge color="green">Standard</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="/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">
        Multimodal model designed for optimal high-volume, high-frequency tasks at scale

        <span className="badge-group">
          <Badge color="green">Standard</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="/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">
        Multimodal model designed to handle lightweight tasks

        <span className="badge-group">
          <Badge color="green">Standard</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_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="/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">
        Multimodal model for complex tasks with a 1 million token context window

        <span className="badge-group">
          <Badge color="orange">Premium</Badge>
          <Badge color="gray">Compatible with 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="/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">
        Multimodal model for complex tasks with a 1 million token context window

        <span className="badge-group">
          <Badge color="orange">Premium</Badge>
          <Badge color="gray">Compatible with 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="/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">
        Premium model combining maximum intelligence with practical performance

        <span className="badge-group">
          <Badge color="orange">Premium</Badge>
          <Badge color="blue">ISMAP</Badge>
          <Badge color="blue">FedRAMP Moderate</Badge>
          <Badge color="gray">Compatible with 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="/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">
        Model that excels at complex agents, coding, and autonomous multi-step workflows

        <span className="badge-group">
          <Badge color="orange">Premium</Badge>
          <Badge color="blue">ISMAP</Badge>
          <Badge color="blue">FedRAMP Moderate</Badge>
          <Badge color="gray">Compatible with 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="/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">
        Fast and cost-efficient model with near-frontier intelligence best for low-latency applications

        <span className="badge-group">
          <Badge color="green">Standard</Badge>
          <Badge color="blue">ISMAP</Badge>
          <Badge color="blue">FedRAMP Moderate</Badge>
          <Badge color="gray">Compatible with Box Agent</Badge>
        </span>
      </Card>

      <Card title="aws__claude_4_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="/guides/box-ai/ai-models/aws-claude-4-opus-model-card" width="640" height="640" data-path="static/guides-box-ai-ai-models/claude.svg">
        Model that excels at coding and complex problem-solving, powering frontier agents

        <span className="badge-group">
          <Badge color="orange">Premium</Badge>
          <Badge color="blue">ISMAP</Badge>
          <Badge color="blue">FedRAMP Moderate</Badge>
        </span>
      </Card>

      <Card title="aws__claude_4_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="/guides/box-ai/ai-models/aws-claude-4-sonnet-model-card" width="640" height="640" data-path="static/guides-box-ai-ai-models/claude.svg">
        Model that brings frontier performance to everyday use cases

        <span className="badge-group">
          <Badge color="orange">Premium</Badge>
          <Badge color="blue">ISMAP</Badge>
          <Badge color="blue">FedRAMP Moderate</Badge>
        </span>
      </Card>

      <Card title="aws__claude_3_7_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="/guides/box-ai/ai-models/aws-claude-3-7-sonnet-model-card" width="640" height="640" data-path="static/guides-box-ai-ai-models/claude.svg">
        Model designed to enhance language understanding and generation tasks

        <span className="badge-group">
          <Badge color="orange">Premium</Badge>
          <Badge color="blue">ISMAP</Badge>
          <Badge color="blue">FedRAMP Moderate</Badge>
        </span>
      </Card>

      <Card title="aws__claude_3_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="/guides/box-ai/ai-models/aws-claude-3-5-sonnet-model-card" width="640" height="640" data-path="static/guides-box-ai-ai-models/claude.svg">
        Model designed to enhance language understanding and generation tasks

        <span className="badge-group">
          <Badge color="orange">Premium</Badge>
          <Badge color="blue">ISMAP</Badge>
          <Badge color="blue">FedRAMP Moderate</Badge>
        </span>
      </Card>

      <Card title="aws__claude_3_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="/guides/box-ai/ai-models/aws-claude-3-haiku-model-card" width="640" height="640" data-path="static/guides-box-ai-ai-models/claude.svg">
        Model tailored for various language tasks, creative writing, and conversational AI

        <span className="badge-group">
          <Badge color="green">Standard</Badge>
          <Badge color="blue">ISMAP</Badge>
          <Badge color="blue">FedRAMP Moderate</Badge>
        </span>
      </Card>

      <Card title="aws__claude_3_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="/guides/box-ai/ai-models/aws-claude-3-sonnet-model-card" width="640" height="640" data-path="static/guides-box-ai-ai-models/claude.svg">
        Model that brings frontier performance to everyday use cases

        <span className="badge-group">
          <Badge color="orange">Premium</Badge>
          <Badge color="blue">ISMAP</Badge>
          <Badge color="blue">FedRAMP Moderate</Badge>
        </span>
      </Card>

      <Card title="aws__titan_text_lite" 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="/guides/box-ai/ai-models/aws-titan-text-lite-model-card" width="640" height="640" data-path="static/guides-box-ai-ai-models/claude.svg">
        Language model for advanced text processing and complex tasks with large context

        <span className="badge-group">
          <Badge color="green">Standard</Badge>
          <Badge color="blue">ISMAP</Badge>
          <Badge color="blue">FedRAMP Moderate</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="/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">
        Multimodal model with a 1 million token context window and advanced reasoning capabilities

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

      <Card title="ibm__llama_4_scout" 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="/guides/box-ai/ai-models/ibm-llama-4-scout-model-card" width="16" height="16" data-path="static/guides-box-ai-ai-models/meta.svg">
        Natively multimodal, mixture-of-experts (MoE) model designed to handle lightweight tasks

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

      <Card title="ibm__llama_3_2_90b_vision_instruct" 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="/guides/box-ai/ai-models/ibm-llama-3-2-90b-vision-instruct-model-card" width="16" height="16" data-path="static/guides-box-ai-ai-models/meta.svg">
        Multimodal model designed to handle lightweight tasks

        <span className="badge-group">
          <Badge color="green">Standard</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="/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">
        High-performance enterprise model for coding and advanced reasoning

        <span className="badge-group">
          <Badge color="red">Preview</Badge>
          <Badge color="green">Standard</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="/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">
        Fast open-source multimodal model with low latency

        <span className="badge-group">
          <Badge color="red">Preview</Badge>
          <Badge color="green">Standard</Badge>
        </span>
      </Card>
    </Columns>
  </Accordion>
</AccordionGroup>

## Customer-enabled models

Certain Box AI customers may enable additional AI models upon their request or upon the models otherwise being made available through their Admin Console. Use of these models may be subject to additional terms. By selecting a customer-enabled model, the customer acknowledges that their data may be processed by additional [subprocessors][subprocessors] of their choice.

<Warning>
  Models offered in **Beta** mode are provided on an as-is basis.
</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="/guides/box-ai/ai-models/openai-gpt-o3-model-card" width="16" height="16" data-path="static/guides-box-ai-ai-models/openai.svg">
        Multimodal model, highly efficient in handling complex, multi-step tasks

        <span className="badge-group">
          <Badge color="purple">Beta</Badge>
          <Badge color="orange">Premium</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="/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">
        Model for complex tasks with advanced reasoning and a large context window

        <span className="badge-group">
          <Badge color="purple">Beta</Badge>
          <Badge color="orange">Premium</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="/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 multimodal model for high-speed and cost-efficient tasks

        <span className="badge-group">
          <Badge color="purple">Beta</Badge>
          <Badge color="green">Standard</Badge>
        </span>
      </Card>

      <Card title="google__gemini_3_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="/guides/box-ai/ai-models/google-gemini-3-pro-model-card" width="16" height="16" data-path="static/guides-box-ai-ai-models/gemini.svg">
        Multimodal model for complex tasks with a 1 million token context window

        <span className="badge-group">
          <Badge color="purple">Beta</Badge>
          <Badge color="orange">Premium</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="/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">
        Multimodal model designed for speed and efficiency across a wide range of tasks

        <span className="badge-group">
          <Badge color="purple">Beta</Badge>
          <Badge color="orange">Premium</Badge>
        </span>
      </Card>
    </Columns>
  </Accordion>

  <Accordion title="xAI">
    <Columns cols={2}>
      <Card title="xai__grok_3_beta" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/grok.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=f11f53fd44df5708ae7379de920ada3d" href="/guides/box-ai/ai-models/xai-grok-3-beta-model-card" width="16" height="16" data-path="static/guides-box-ai-ai-models/grok.svg">
        Multimodal model for complex tasks with a 1 million token context window

        <span className="badge-group">
          <Badge color="purple">Beta</Badge>
          <Badge color="orange">Premium</Badge>
        </span>
      </Card>

      <Card title="xai__grok_3_mini_beta" arrow="true" icon="https://mintcdn.com/box/ZIWJfhT3Dv9f-PF4/static/guides-box-ai-ai-models/grok.svg?fit=max&auto=format&n=ZIWJfhT3Dv9f-PF4&q=85&s=f11f53fd44df5708ae7379de920ada3d" href="/guides/box-ai/ai-models/xai-grok-3-mini-beta-model-card" width="16" height="16" data-path="static/guides-box-ai-ai-models/grok.svg">
        Multimodal model for complex tasks with a 1 million token context window

        <span className="badge-group">
          <Badge color="purple">Beta</Badge>
          <Badge color="orange">Premium</Badge>
        </span>
      </Card>
    </Columns>
  </Accordion>
</AccordionGroup>

## Default models

The following tables list the default AI models used when you do not override the agent configuration. The model that runs depends on the agent type, the provider, and the capability tier.

<Note>Default settings shown below may not be applicable for certain customers with specific configurations or requirements.</Note>

### Legacy agents

Legacy agents represent the initial generation of Box AI capabilities, designed to handle basic, single-step tasks such as simple Q\&A and document summarization. The table below specifies available models for a particular use case.

| Use case                            | Provider         | Model for Standard Version                                                                      | Model for Advanced or Enhanced Version                                                        |
| ----------------------------------- | ---------------- | ----------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
| Q\&A for Documents, Notes, and Hubs | OpenAI (Default) | <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 agents

Box agents are the next generation of intelligent assistants built with advanced reasoning and orchestration, capable of planning and executing complex, multi-step workflows across your entire Box content ecosystem. The table below specifies available models for each specialized agent type.

| Agent                         | Model for Standard Version                                                                       | Model for Pro or Enhanced Version                                                               |
| ----------------------------- | ------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------- |
| Box Agent                     | <Link href="/guides/box-ai/ai-models/openai-gpt-5-4-model-card">GPT 5.4</Link>                   | <Link href="/guides/box-ai/ai-models/aws-claude-4-6-sonnet-model-card">Claude Sonnet 4.6</Link> |
| Extract Agent                 | <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>    |
| Security Classification Agent | <Link href="/guides/box-ai/ai-models/google-gemini-2-5-flash-model-card">Gemini 2.5 Flash</Link> | N/A                                                                                             |
| Threat Analysis Agent         | <Link href="/guides/box-ai/ai-models/google-gemini-2-5-flash-model-card">Gemini 2.5 Flash</Link> | N/A                                                                                             |

[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
