Problems with current quota

Hello! Firstly, sorry for my terrible English.
I am implementing a bot on my IRC channel and to do so I followed the instructions to create a free API Key.
I managed to create it and configured it in my bot.
But when the bot is mentioned instead of responding, the message is displayed: “You exceeded your current quota, please check your plan and billing details.”
Remembering that my plan is free and I have never used the key before.
In “Usage/Activity” everything is with zeros.
How to resolve this situation?

part of my bot configuration below:

[openai]
api_key = sk-mysecretkeyhere

[chatcompletion]
model = gpt-3.5-turbo
role = user
context = You are a helpful and friendly bot on IRC channel #linux.
temperature = 0.8
max_tokens = 1000
top_p = 1
frequency_penalty = 0
presence_penalty = 0
request_timeout = 60

OpenAI no longer gives out free credits with accounts.

You’ll need to add at least $5 to test it out, but very much worth it, imho!

429 - You exceeded your current quota, please check your plan and billing details Cause: You have run out of credits or hit your maximum monthly spend.
Solution: Buy more credits or learn how to increase your limits.

Thank you very much my friend, I will try to resolve it.

1 Like