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

# AI 에이전트, 애플리케이션, 모델 구축

> 실험 추적, 평가, 관측성을 지원하는 W&B Platform으로 AI 모델을 개발하고 LLM 애플리케이션을 배포하세요.

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 Platform을 사용해 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/cropped-models.svg" href="/ko/models" subtitle="AI 모델 개발" iconSize={36}>
    실험 추적, 파인튜닝, 리포팅, 하이퍼파라미터 스윕, 그리고 버전 관리와 재현성을 위한 모델 레지스트리로 AI 모델 개발을 관리하세요.
  </ProductCard>

  <ProductCard title="W&B Weave" iconSrc="icons/cropped-weave.svg" href="/ko/weave" subtitle="앱에서 AI 모델 활용" iconSize={36}>
    Tracing, 출력 평가, 비용 추정, 그리고 대규모 언어 모델(LLM)과 Settings을 비교할 수 있는 플레이그라운드로 코드에서 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/cropped-inference.svg" href="/ko/inference" subtitle="파운데이션 모델에 액세스" iconSize={36}>
    OpenAI 호환 API를 통해 대표적인 오픈 소스 파운데이션 모델에 액세스하고, 사용 추적과 Tracing 및 평가를 위한 Weave 인테그레이션을 활용하세요.
  </ProductCard>

  <ProductCard title="Serverless Training" iconSrc="icons/cropped-training.svg" href="/ko/serverless-training" subtitle="모델을 포스트 트레이닝하고 파인튜닝하세요" iconSize={36}>
    이제 공개 프리뷰로 제공됩니다. Serverless RL과 Serverless SFT, 관리형 GPU 인프라, ART 및 RULER 인테그레이션, 멀티턴 에이전트형 작업용 오토스케일링을 통해 LLM을 포스트 트레이닝하고 파인튜닝하세요.
  </ProductCard>

  <ProductCard title="Serverless Sandboxes" iconSrc="icons/cropped-sdk.svg" href="/ko/sandboxes" subtitle="격리된 환경에서 코드를 실행하세요" iconSize={36}>
    현재 초대 전용 비공개 프리뷰로 제공됩니다. 라이프사이클 관리, 시크릿 처리, 파일 액세스, Python SDK를 통해 격리된 컴퓨팅 환경에서 코드를 실행하세요.
  </ProductCard>
</div>
