無料で3ヶ月間、18ドル分使えるというので。
openai.api_key = os.getenv("OPENAI_API_KEY")
try:
response = openai.Completion.create(
engine="davinci",
# engine="gpt-3.5-turbo",
prompt="Hello, world!",
max_tokens=5
)
print(response.choices[0].text)
except Exception as e:
print(f"{e=}, {type(e)=}")
NGでした。
e=RateLimitError(message='You exceeded your current quota, please check your plan and billing details.', http_status=429, request_id=None), type(e)=<class 'openai.error.RateLimitError'>
利用量の確認をします。
利用の記録はないです。
無料18ドル分も付与されてない雰囲気。
「アカウント作成から3ヶ月以内。」ということですがそれは満たしている。
どういうことなんすかね!?
👉 How can I get Free Trial Credits? - General API discussion - OpenAI API Community Forum