Liea
'API' 태그의 글 목록

API

③ 공부/생성형 AI(Generative AI) 활용하기

openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details. 오류 해결하기

에러내용 openai.error.RateLimitError: 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. API 결제 관련 문제이므로 하단 잔여 크레딧 확인을 해보면 된다. https://platform.openai.com/usage 만약 잔여 크레딧이 있으나 해결이 안된다면 결제수단이 등록 되었는지, 결제수단이 잘못된 것은 아닌지 확인해보면 된다. https://platform.openai.com/accoun..

③ 공부/생성형 AI(Generative AI) 활용하기

openai.error.InvalidRequestError: The model davinci has been deprecated 오류 해결하기

에러 내용 openai.error.InvalidRequestError: The model davinci has been deprecated, learn more here: https://platform.openai.com/docs/deprecations 에러 유발 코드는 아래 코드 중 engine 부분이 문제였다. 지원하지 않는 엔진이기 때문에 발생하는 에러였다. response = openai.Completion.create( **engine="davinci",** prompt=prompt, max_tokens=150, temperature=0.7 ) 아래 링크로 들어가 지원중인 엔진으로 변경해 주면 된다. https://platform.openai.com/docs/deprecations 아래와 같이 ..