에러 해결
OpenAI의 API 활용 중 아래 에러가 나왔다.
openai.RateLimitError: Error code: 429 - { 'error': { 'message': 'You exceeded your current quota, please check your plan and billing details. For more information on this error, read the docs: https://platform.openai.com/docs/guides/error-codes/api-errors.', 'type': 'insufficient_quota', 'param': None, 'code': 'insufficient_quota' } }
명시되었듯이 limit보다 더 많이 요청되어 안되었다. 결국 billing 추가하여 해결하였다.
(아래 내용보면 처음부터 credit 내라는 사람도 있다?!)
OpenAI API error 429: "You exceeded your current quota, please check your plan and billing details"
I'm making a Python script to use OpenAI via its API. However, I'm getting this error: openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details My ...
stackoverflow.com