5
2

OpenAI o1-prebiewのAPIを試そうとしたら会員ランク()ではじかれてた話 #chatgpt

Last updated at Posted at 2024-09-13

リリースした日に触れたのでメモ。試したいけど試せなかった話です。

OpenAIに雨乞い
Kobito.7zmZ9s.png

エラー: Your organization must qualify for at least usage tier 5 to access 'o1-preview'.

まずはいつも通りここでAPIキー取得してsk-proj-xxxxxxxxxxxxxxxxxxx 的なキーを発行し、APIを叩いてみます。

const { OpenAI } = require("openai");
const openai = new OpenAI({apiKey: `sk-proj-xxxxxxxxxxxx`});
const prompt = `hello world?`;
    
(async () => {
    const response = await openai.chat.completions.create({
        model: "o1-preview",
        max_tokens: 1024,
        messages: [
          {
            role: "user",
            content: [
              { type: "text", text: prompt },
            ],
          },
        ],
    });

    console.log(response.choices[0].message);
})();

これでちゃんと動いてるか分からないけどとりあえずAPIアクセスでエラーが出ました。

スクリーンショット 2024-09-13 20.02.06.png

ほうほう

Your organization must qualify for at least usage tier 5 to access 'o1-preview'. See https://platform.openai.com/docs/guides/rate-limits/usage-tiers for more details on usage tiers.

=> "o1-preview"にアクセスするには、少なくとも利用レベル5の資格が必要です。利用階層の詳細については、https://platform.openai.com/docs/guides/rate-limits/usage-tiers をご覧ください。"

Tier、レベル5 どういうことだ...?

Tier - OpenAI APIのVIP会員的な?

Tier調べたら出てきました。これ知らなかった...

https://platform.openai.com/docs/guides/rate-limits/usage-tiers?context=tier-five

You can view the rate and usage limits for your organization under the limits section of your account settings. As your usage of the OpenAI API and your spend on our API goes up, we automatically graduate you to the next usage tier. This usually results in an increase in rate limits across most models.

スクリーンショット 2024-09-13 19.59.08.png

アカウント設定の制限セクションで、あなたの組織の料金と使用量の制限を見ることができます。 OpenAI API の使用量と API の利用が増加すると、自動的に次の使用レベルに移行します。 その結果、ほとんどのモデルで料金の上限が上がります。 らしい

もっと組織でAPI使ってないとダメってことっぽい
使ってるとTierが上がるんでしょうね。

いっぱい使ってるVIPを優遇ってことっぽいですね。

現在のTierが知りたい => Tier1だったので詰み 泣

ここで調べられました。

スクリーンショット 2024-09-13 20.03.39.png
Current tire1て書いてる

僕くらいのちょっと試すくらいの使い方しているとTier5は遠い道のりですね残念。

まとめ

たぶんTier1に降りてくるまで待つしかなさそうです。

雨乞いしないと。

Kobito.P3of59.png

5
2
2

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