2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Grok の API利用(xAI API による)がパブリックベータになった話の公式情報など

Last updated at Posted at 2024-11-05

↓こちらのポストをした件です

↓こちらも、別に見かけた情報

公式情報

xAI の公式の情報をいくつかピックアップしてみます。

「x.ai」の API・Blog の項目

以下は「API」のページです。

image.png

下に進むとパブリックベータになったという記載や、

image.png

2024年中は毎月 25ドルの無料クレジットが付与される話も。

image.png

Blog という項目を選ぶと、こんな感じ。
image.png

公式ドキュメント

公式ドキュメントは以下になるようです。

●Welcome to the xAI documentation
 https://docs.x.ai/docs

image.png

以下、最初に見ると良さそうなリンクを列挙してみます。

> Getting started
https://docs.x.ai/docs#getting-started

image.png

> クイックスタート
https://docs.x.ai/docs/quickstart

image.png

> モデル
https://docs.x.ai/docs#models

image.png

今時点は、利用可能なモデルは「grok-beta」になるようです。

image.png

公式サンプル

上記のページ内で出てきていた、curl を使った公式サンプルを掲載してみます。

curl https://api.x.ai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $XAI_API_KEY" \
  -d '{
        "messages": [
          {
            "role": "system",
            "content": "You are Grok, a chatbot inspired by the Hitchhikers Guide to the Galaxy."
          },
          {
            "role": "user",
            "content": "What is the meaning of life, the universe, and everything?"
          }
        ],
        "model": "grok-beta",
        "stream": false,
        "temperature": 0
      }'

おわりに

昼休みに情報を見かけ、取り急ぎ、APIキー生成や無料クレジット確認を行ってみた後に公式情報を確認していったのですが、確認した情報のリンクなどをメモとして記事化してみました。

詳細は別途、見ていければと思います。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?