7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

生成AIAdvent Calendar 2024

Day 8

Grok の API利用(xAI API による)がパブリックベータになった話の公式情報など +α【生成AI-2】

Last updated at Posted at 2024-11-05

この記事は後から、「Qiita の 生成AI Advent Calendar 2024」の 2つ目、7日目の記事としても登録しました(記事を書いたのは 11月の上旬です)。

また、「Adventar の 生成AI Advent Calendar 2024」の 6日目の記事としても登録しました。

※ アドベントカレンダー登録日になっているタイミングなどで、少し追記などもしました。

はじめに

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

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

公式情報

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キー生成や無料クレジット確認を行ってみた後に公式情報を確認していったのですが、確認した情報のリンクなどをメモとして記事化してみました。

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

【2024/12/8】追記

API の話ではないですが、Grok が X の無料ユーザーにも開放されたようです。

●チャットAI「Grok」、Xの無料ユーザーに開放(条件あり) - ITmedia NEWS
 https://www.itmedia.co.jp/news/articles/2412/07/news084.html

さらなる追記

モデルについて、記事を最初に書いた時から「grok-vision-beta」が追加されたようです。

image.png

また、API のドキュメントを見ていると、OpenAI の SDK から扱えるという話もあるようです(Gemini でも同じような話があったもの)。

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

image.png

image.png

7
2
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
7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?