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

export const MultiRelatedLinks = ({sections = []}) => {
  if (!sections || sections.length === 0) {
    return null;
  }
  return <div className="space-y-8">
      {sections.map((section, index) => <RelatedLinks key={index} title={section.title} items={section.items} />)}
    </div>;
};

export const RelatedLinks = ({title, items = []}) => {
  const getBadgeClass = badge => {
    if (!badge) return "badge-default";
    const badgeType = badge.toLowerCase().replace(/\s+/g, "-");
    return `badge-${badge === "ガイド" ? "guide" : badgeType}`;
  };
  if (!items || items.length === 0) {
    return null;
  }
  return <div className="my-8">
      {}
      <h3 className="text-sm font-bold uppercase tracking-wider mb-4">{title}</h3>

      {}
      <div className="flex flex-col gap-3">
        {items.map((item, index) => <a key={index} href={item.href} className="py-2 px-3 rounded related_link hover:bg-[#f2f2f2] dark:hover:bg-[#111827] flex items-center gap-3 group no-underline hover:no-underline border-b-0">
            {}
            <span className={`px-2 py-1 rounded-full text-xs font-semibold uppercase tracking-wide flex-shrink-0 ${getBadgeClass(item.badge)}`}>
              {item.badge}
            </span>

            {}
            <span className="text-base">{item.label}</span>
          </a>)}
      </div>
    </div>;
};

<Warning>
  Box AI Studio is available only for Enterprise Advanced accounts.
</Warning>

[Box AI Studio][ai-studio] allows you to build and manage custom AI agents to
best suit your business needs. For example, you can create an AI agent
that acts as a compliance consultant, answering questions regarding customer
documentation with the FedRAMP Moderate compliance in mind.

## Box AI Studio capabilities

Currently, you can configure Box AI agent to answer user questions or generate
text you can use in your documents.

<Frame>
  <img src="https://mintcdn.com/box/Z1XcLZTI-opBQvuM/images/guides/ai-studio/ai-agent-capabilities.png?fit=max&auto=format&n=Z1XcLZTI-opBQvuM&q=85&s=fa938ce153e4a236ac7d8944856a598f" alt="ai agent capabilities" width="780" height="352" data-path="images/guides/ai-studio/ai-agent-capabilities.png" />
</Frame>

## Supported languages

Box AI studio works in a number of languages including
English, Japanese, French, Spanish, and many more.
However, the underlying models are primarily
trained on English language documents. This means
that prompts in other languages may return answers
of lower quality than in English. Tests have shown
satisfactory results for summarizing, checking grammar
and spelling, and answering questions, but bear in mind
that the results may be different than in English.

<Tip>
  {/* alex ignore */}

  Switch the language to Japanese to get
  better results for this language.
</Tip>

[ai-studio]: https://support.box.com/hc/en-us/articles/37228079461267-Enabling-Box-AI-Studio-and-Managing-Agents

<RelatedLinks
  title="RELATED GUIDES"
  items={[
{ label: translate("Create agents"), href: "/guides/ai-studio/ai-studio-agents/create-agents", badge: "GUIDE" },
{ label: translate("Ask questions to Box AI"), href: "/guides/box-ai/ai-tutorials/ask-questions", badge: "GUIDE" },
{ label: translate("Generate text with Box AI"), href: "/guides/box-ai/ai-tutorials/generate-text", badge: "GUIDE" }
]}
/>
