> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-run-filter-ui-updates.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# AIエージェント、アプリケーション、モデルを開発

export const ProductCard = ({title, iconSrc, href, subtitle, children, iconSize = 24, className = ''}) => {
  const handleCardClick = e => {
    let target = e.target;
    while (target && target !== e.currentTarget) {
      if (target.tagName === 'A') return;
      target = target.parentElement;
    }
    if (href) {
      window.location.href = href;
    }
  };
  return <div className={`product-card group flex flex-col rounded-lg p-6 transition-all ${className}`} onClick={handleCardClick} style={{
    cursor: href ? 'pointer' : 'default'
  }}>
      {iconSrc && <span className="product-card-icon" aria-hidden="true" style={{
    display: 'block',
    width: `${iconSize}px`,
    height: `${iconSize}px`,
    backgroundColor: '#D4870D',
    WebkitMaskImage: `url(${iconSrc})`,
    maskImage: `url(${iconSrc})`,
    WebkitMaskRepeat: 'no-repeat',
    maskRepeat: 'no-repeat',
    WebkitMaskSize: 'contain',
    maskSize: 'contain',
    WebkitMaskPosition: 'left center',
    maskPosition: 'left center',
    marginBottom: '8px',
    lineHeight: 1
  }} />}

      <h2 className="product-card-title">
        {title}
      </h2>
      {subtitle && <h3 className="product-card-subtitle">
          {subtitle}
        </h3>}
      <div className="product-card-body leading-relaxed">
        {children}
      </div>
    </div>;
};

export const Banner = ({title, background, children, home}) => {
  useEffect(() => {
    if (home) {
      const header = document.querySelector("div#content-area > header#header");
      if (header) {
        header.style.display = "none";
      }
      const mdxContent = document.querySelector("div.mdx-content");
      if (mdxContent) {
        mdxContent.style.marginTop = "0";
      }
    }
    return () => {
      const header = document.querySelector("div#content-area > header#header");
      if (header) {
        header.style.display = "";
      }
      const mdxContent = document.querySelector("div.mdx-content");
      if (mdxContent) {
        mdxContent.style.marginTop = "";
      }
    };
  }, [home]);
  return <div className="relative w-full min-h-[200px] bg-gray-900 bg-cover bg-center bg-no-repeat rounded-lg overflow-hidden" style={{
    backgroundImage: `url('${background}')`
  }}>
      <div className="absolute inset-0 bg-black bg-opacity-40"></div>
      <div className="relative z-10 flex flex-col justify-center h-full px-8 py-12 text-white">
        <h2 className="banner-title font-serif text-2xl text-white font-normal mb-4 leading-tight mt-4">{title}</h2>
        <div className="banner-body text-gray-200 leading-relaxed">{children}</div>
      </div>
    </div>;
};

<div id="weights-biases">
  ## Weights & Biases
</div>

<h3 className="home-h3">実験管理、評価、可観測性のためのW\&Bプラットフォームで、AIモデルを開発し、LLMアプリケーションを本番環境に展開します。</h3>

<div className="grid grid-cols-1 md:grid-cols-2 gap-4" style={{ marginTop: '2rem', marginBottom: '2rem' }}>
  <ProductCard title="W&B Models" iconSrc="icons/Models.svg" href="/ja/models" subtitle="AIモデルを開発" iconSize={24}>
    実験管理、ファインチューニング、レポート、ハイパーパラメーター sweep、そしてバージョン管理と再現性を支えるモデル Registry により、AIモデル開発を管理します。
  </ProductCard>

  <ProductCard title="W&B Weave" iconSrc="icons/Weave.svg" href="/ja/weave" subtitle="アプリケーションでAIモデルを使用" iconSize={24}>
    トレース、output の評価、コスト見積もり、そして大規模言語モデル (LLM) と設定を比較するためのプレイグラウンドにより、コード内のAIモデルを管理します。
  </ProductCard>
</div>

<div id="powered-by-coreweave">
  ## CoreWeave を基盤とするサービス
</div>

<h3 className="home-h3">CoreWeave インフラストラクチャー上で提供されるマネージドサービスです。</h3>

<div className="grid grid-cols-1 md:grid-cols-3 gap-4" style={{ marginTop: '2rem' }}>
  <ProductCard title="Serverless Inference" iconSrc="icons/Inference.svg" href="/ja/inference" subtitle="基盤モデルにアクセス" iconSize={24}>
    OpenAI 互換 API を通じて、主要なオープンソース基盤モデルにアクセスできます。使用状況のトラッキングに加え、トレースと評価のための Weave インテグレーションも利用できます。
  </ProductCard>

  <ProductCard title="Serverless RL" iconSrc="icons/Training.svg" href="/ja/serverless-rl" subtitle="モデルを事後トレーニング" iconSize={24}>
    現在、パブリックプレビューで提供中です。サーバーレス強化学習、マネージド GPU インフラストラクチャー、ART と RULER のインテグレーション、マルチターンのエージェント型タスク向けオートスケーリングにより、LLM を事後トレーニングできます。
  </ProductCard>

  <ProductCard title="Serverless Sandboxes" iconSrc="icons/cropped-sdk.svg" href="/ja/sandboxes" subtitle="分離された環境でコードを実行" iconSize={24}>
    現在、招待制のプライベートプレビューです。ライフサイクル管理、シークレットの処理、file へのアクセス、Python SDK を備えた分離コンピュート環境でコードを実行できます。
  </ProductCard>
</div>
