#29755 RateLimitError handling with Groq provider
Code Sample from litellm import completion
response = completion( model="groq/openai/gpt-oss-20b", messages=[ {"role": "user", "content": "Hello"} ] ) Error Paste the full RateLimitError traceback here Expected Behavior
LiteLLM should either:
Automatically retry when rate limits are encountered, or Surface the provider's rate limit information clearly. Additional Context
The same request works intermittently, but fails when processing multiple requests. I would like clarification on whether this is expected behavior, a provider-specific limitation, or an issue in LiteLLM's rate limit handling.