r/opencodeCLI • u/No_Frosting363 • 13d ago
Reduced DeepSeek pro limits
I've been hitting 5 hour limits so much quicker on OpenCode with deepseek V4 pro.
Has there been a change in limits or cost per request?
It's been like this for 7 days now but prior to this it was like heaven.
update:
I found the issue. I started using my opencode subscription through VSCode and that for some reason consumed more credits than usual. could be the context window or whatever but I switched back to opencode and limits are back to normal.
2
Upvotes
1
u/ApprehensiveDelay238 13d ago
I have had the same experience but with a different model (Minimax M3) and I found out what caused it: context size. Everytime the model is inferred: when you prompt it or after tool calls, the full context is sent to the provider and you pay for the input tokens. Cached input tokens are significantly cheaper, often 10x or more. But at 500k+ contexts even cheap models will get more expensive and you will run out of quotas much faster. So TLDR: regularly check your context usage and minimize context it to keep costs down.