返回 DeepSeek-Reasonix
client.py
1 from api import timeout_ms
2
3
4 def wait_seconds():
5 """How long one request may wait, in seconds."""
6 return timeout_ms()
7
8
9 def retry_budget_seconds(attempts=3):
10 return attempts * wait_seconds()
11
11 lines PYTHON