debugging
Finding the cause of a failure.
2 tagged items
- ErrorChatGPT
429 Too Many Requests / Rate limit reached
You crossed a request or token limit for your tier. The fix is backoff with jitter and batching, not a shorter sleep, and the header tells you which…
Tested on GPT-5 · May 2026
- ErrorChatGPTGemini
This model's maximum context length is N tokens
The request is longer than the model can hold, counting your prompt, the whole conversation history and the space reserved for the answer. Usually it…
Tested on GPT-5 · May 2026
- PromptUniversal
Debug from a stack trace
Works from the trace and the relevant source to name the most likely cause, with the check that would confirm it.
- PromptUniversal
Strict code review of a diff
A review prompt that reports only what would break in production, gives the smallest fix for each finding, and is allowed to say the diff is fine.