AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
client.py
根目录
/
benchmarks
/
e2e
/
tasks
/
mfix-timeout-units
/
workdir
/
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