Hello, community.
I’m getting the following error when using the “gpt-4o-mini-transcribe” model for audio transcription:
{‘error’: {‘message’: ‘Rate limit reached for gpt-4o-mini in organization org-0ir1pxxTsPvGtrXF1pl1wfPf on requests per day (RPD): Limit 10000, Used 10000, Requested 1. Please try again in 8.64s. Visit ``https://platform.openai.com/account/rate-limits`` to learn more.’, ‘type’: ‘requests’, ‘param’: None, ‘code’: ‘rate_limit_exceeded’}}
However, according to the dashboard, I’m nowhere near reaching this daily limit. I’ve already created a new API key and added more credits, but the error persists.
To simplify, I’m using the model like this:
self.openai = OpenAI(
api_key=config.OPENAI_KEY
)
transcription = self.openai.audio.transcriptions.create(
model=self.transcription_model,
file=audio_file
)
What else can I investigate to try to solve this problem?