Hi all,
I know there have already been a lot of similar questions, but I would still like to get an answer and advice…so:
I’m just playing around with the ASSISTANT API calls, as described in the docs:
https://platform.openai.com/docs/assistants/how-it-works
So, I created an assistant, a thread, a message, started Run, and everything went as it should. But, when I tried to retrieve the Run object (in order to see status), as described here:
https://platform.openai.com/docs/api-reference/runs/getRun
with plain Postman tool, I always get the following error
"last_error": {
"code": "rate_limit_exceeded",
"message": "Rate limit reached for gpt-3.5-turbo-1106 in organization xxxxxxxxx on requests per min (RPM): Limit 3, Used 3, Requested 1. Please try again in 20s. Visit https://platform.openai.com/account/rate-limits to learn more.
You can increase your rate limit by adding a payment method to your account at https://platform.openai.com/account/billing."
},
"model": "gpt-3.5-turbo-1106",
And no matter how much I pause between the two calls, I always get this one and the same error. I repeat, I use regular Postman for the API call. Can someone please explain why this is happening?
Further, since I am still studying the Assistant API, and that I am far from any production and commercial use, is there something like a free tier, let say “development mode”, which provides a little bigger Rate limit, OR do I need to pay extra to use the API during research/development also?