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

# リファレンス概要

> W&B API に関する生成ドキュメント

export const ClickableCard = ({href, children, className = ''}) => {
  const handleCardClick = e => {
    let target = e.target;
    while (target && target !== e.currentTarget) {
      if (target.tagName === 'A') {
        return;
      }
      target = target.parentElement;
    }
    window.location.href = href;
  };
  return <div className={`clickable-card ${className}`} onClick={handleCardClick} style={{
    cursor: 'pointer'
  }}>
      {children}
    </div>;
};

<CardGroup cols={2}>
  <Card title="Python Library" href="/models/ref/python/">
    実験からプロダクションまで、 Models のトレーニング、 ファインチューン 、管理を行います。
  </Card>

  <Card title="Command Line Interface" href="/models/ref/cli/">
    シェル コマンド を使用して、ログイン、ジョブの実行、 Sweeps の実行などを行います。
  </Card>
</CardGroup>

<CardGroup cols={2}>
  <Card title="Query Panels" href="/models/ref/query-panel/">
    データの選択と集計を行うためのベータ版クエリ言語です。
  </Card>

  <Card title="W&B Weave" href="/weave/">
    Weave APIをお探しですか？ W\&B Weave ドキュメントを参照してください。
  </Card>
</CardGroup>

## Weave Reference

<Card title="W&B Weave" href="/weave/">
  Weave APIをお探しですか？ W\&B Weave ドキュメントを参照してください。
</Card>
