I have created account 10 days ago, credited my account with 5$. did not used any api but when I added secret key and tried to use the gpt-3.5-turbo-0125 its throwing the same error again and again even if I have tried to revoked the previous api_key and creation of new api_key.
Below is the error I am getting.
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'}}
The code that I am trying to implement is as below.
from langchain.chains import create_sql_query_chain
from langchain_openai import ChatOpenAI
llm = ChatOpenAI(model="gpt-3.5-turbo-0125", temperature=0)
generate_query = create_sql_query_chain(llm, db)
query = generate_query.invoke({"question": "Hey"})
Note: I have also tried to remove existing credit info and adding new card info, again 5$ deducted but it is not showing in my account balance.