1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

openai api を発行するまでの手順など

Last updated at Posted at 2023-04-15

概要

  • openai api を使用するまでの手順
  • 及び補足情報

openai アカウント作成

  • 上記からメールアドレスなどで登録する
  • 確認メール
    • 確認メールが送られてくる
    • [ Verify email address ] という link から確認
  • 個人情報の登録
    • 氏名、誕生日、電話番号など登録する
    • 電話番号に確認コードが送られてくるので認証する

基本となるアカウント作成は以上で完了

chatgpt

  • 登録後 chatGPTが利用可能
  • 基本は無料枠のみ
  • [ upgrade to plus ] から課金すると、GPT-4が利用できる
    • 後述の API Key の課金とは別の月額課金となる。

playground

  • 提供されている様々な model の試行場所
  • 後述のAPI同様に料金が発生する // 最初は無料枠が有る

apikey

  • api key 作成
    • [ create new secret key ] を選択
    • [ create secret key ] を選択。 // random に key が決まる
    • 作成された key は控える
    • application などから key を用いてサービスを使用する

api 利用方法

https://platform.openai.com/docs/introduction
https://platform.openai.com/docs/api-reference
https://platform.openai.com/examples

document, api 使用方法, サンプルコードなどが揃っている。

example

pip install openai

利用可能 model を列挙する

organization = "DUMMY_CODE"   // organization code
openapi_api_key = "DUMMY_KEY"  // 作成した api key

import os
import openai
openai.organization = organization
openai.api_key = openapi_api_key
model_list = openai.Model.list()

print(model_list)

free trial credit

  • 無料使用枠を確認できる.
  • また、同画面上から利用状況と料金が確認できる

bill

  • api は従量課金となる
  • [ set up paid account ] からクレジットカードを登録する

利用制限

  • 使いすぎを抑制するため、課金料金の上限を設定できる

料金体系

1
3
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
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?