> ## 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 APIエンドポイントで使用されるデフォルトのAIモデル、プロンプト、LLMパラメータを上書きします。

# AIモデルの上書き

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>;
};

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

以下のガイドでは、Box AIが内部で使用しているAIエージェントの構成を調べたりカスタマイズしたりする方法について説明します。上書きの使用タイミング、エンドポイントごとの構成構造、プロバイダごとのLLMパラメータの違いなど、上書きシステムの概要については、<Link href="/guides/box-ai/index#the-ai_agent-override-system">Box AIの概要</Link>を参照してください。

<CardGroup cols={2}>
  <Card title="構成の上書き" icon="sliders" href={localizeLink("/guides/box-ai/ai-agents/ai-agent-overrides")}>
    `ai_agent`パラメータの詳細なリファレンス。`ask`、`text_gen`、`extract`、および`extract_structured`のサンプルペイロードが含まれます。
  </Card>

  <Card title="デフォルト構成の取得" icon="gear" href={localizeLink("/guides/box-ai/ai-agents/get-agent-default-config")}>
    `GET /2.0/ai_agent_default`を使用して現在のデフォルト値を取得し、上書きの対象となる内容を確認します。
  </Card>

  <Card title="構成のバージョン管理" icon="clock-rotate-left" href={localizeLink("/guides/box-ai/ai-agents/ai-agent-versioning")}>
    Boxによるエージェントスナップショットのバージョン管理方法、12か月のサポート保証、および移行スケジュールについてご確認ください。
  </Card>

  <Card title="サポートされているモデル" icon="microchip" href={localizeLink("/guides/box-ai/ai-models/index")}>
    すべてのコアモデルおよび顧客希望で有効化できるモデルのリスト。機能レベル、コンプライアンスバッジ、API名が含まれます。
  </Card>
</CardGroup>
