chat gpt api problem
"429 Your account is not active, please check your billing details on our website." It is giving error. I have used it before but there was no problem then, now the problem is happening.
screenshot of billing: https://prnt.sc/IK_vlvagrwH8
I have tested the api with the following codes but it is working again with these codes. The problem occurs when running humanify Responses: https://prnt.sc/11o6iOGCykVc
curl -X POST https://api.openai.com/v1/chat/completions
-H "Content-Type: application/json"
-H "Authorization: Bearer sk-proj-redacted"
-d '{
"model": "gpt-4",
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Give me 10 city names."}
]
}'
RateLimitError: 429 Your account is not active, please check your billing details on our website.
at APIError.generate (file:///C:/Users/asus/AppData/Roaming/npm/node_modules/humanifyjs/node_modules/openai/error.mjs:59:20)
at OpenAI.makeStatusError (file:///C:/Users/asus/AppData/Roaming/npm/node_modules/humanifyjs/node_modules/openai/core.mjs:268:25)
at OpenAI.makeRequest (file:///C:/Users/asus/AppData/Roaming/npm/node_modules/humanifyjs/node_modules/openai/core.mjs:311:30)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async file:///C:/Users/asus/AppData/Roaming/npm/node_modules/humanifyjs/dist/index.mjs:56726:26
at async visitAllIdentifiers (file:///C:/Users/asus/AppData/Roaming/npm/node_modules/humanifyjs/dist/index.mjs:56598:21)
at async file:///C:/Users/asus/AppData/Roaming/npm/node_modules/humanifyjs/dist/index.mjs:56720:12
at async unminify (file:///C:/Users/asus/AppData/Roaming/npm/node_modules/humanifyjs/dist/index.mjs:196:27)
at async Command.
Hey! It seems that you just posted your secret token publicly. I removed the token's details from this ~PR~ edit: issue, but I'd recommend revoking the token, as there are a lot of bots that scan Github automatically for any tokens.
Does the issue persist if you create a new token?
I have generated new api key but still having problem
@jehna chatgpt has different api tell me which api are you using for humanify.When I tested with the below code it was working but not working in humanify.
curl https://api.openai.com/v1/chat/completions
-H "Content-Type: application/json"
-H "Authorization: Bearer your-api-key"
-d '{
"model": "gpt-3.5-turbo",
"messages": [{"role": "user", "content": "Hello, ChatGPT!"}],
"max_tokens": 100
}'
Can you try the same code with the model gpt-4o-mini? That's the default model used by humanify. Alternatively you can try --model gpt-3.5-turbo flag with Humanify to use the same model your example code is using
I tried with gpt-4o-mini but it is working
gpt-4o-mini code:
curl https://api.openai.com/v1/chat/completions
-H "Content-Type: application/json"
-H "Authorization: Bearer your-api-key"
-d '{
"model": "gpt-4o-mini",
"messages": [{"role": "user", "content": "Test message for GPT-4o-mini"}],
"max_tokens": 50
}'
When I try with humanify I get "RateLimitError: 429 Your account is not active, please check your billing details on our website."
I removed the token's details from this ~PR~
@jehna FYI, in the case of exposed secrets like this, it's not enough to just edit the post, but you need to also remove the old edit history, otherwise it's still exposed there.
- https://docs.github.com/en/communities/moderating-comments-and-conversations/tracking-changes-in-a-comment#deleting-sensitive-information-from-a-comments-history
I tried with gpt-4o-mini but it is working Screenshot: prnt.sc/WlS44qZO5UQc
@abdurrahim11 It looks like you may have exposed your API token again in this screenshot, so if you haven't already, you should delete and re-generate that one as well.
Have you verified your email? https://community.openai.com/t/chatgpt-your-account-is-not-active/28667/2
Closing due inactivity, please reopen if needed