TIL

3.16 D+6

썬2 2024. 3. 16. 20:58

에러 해결

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 내라는 사람도 있다?!)

https://stackoverflow.com/questions/75898276/openai-api-error-429-you-exceeded-your-current-quota-please-check-your-plan-a

 

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

 

'TIL' 카테고리의 다른 글

3.18 D+8  (1) 2024.03.18
3.17 D+7  (0) 2024.03.17
03.15 D+5  (0) 2024.03.15
03.14 D+4  (0) 2024.03.15
03.13 D+3  (1) 2024.03.14