Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion verifiers/v1/clients/eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,11 @@ def __init__(
# No timeout: agentic completions are slow and the rollout timeout is the real backstop.
# Build full URLs ourselves (base_url + dialect.upstream_path) rather than relying on
# httpx base-url joining, which drops the base path for a leading-slash request path.
self.http = httpx.AsyncClient(timeout=None)
# Match V1's default concurrency while retaining HTTPX's 20-idle keepalive bound.
self.http = httpx.AsyncClient(
timeout=None,
limits=httpx.Limits(max_connections=128, max_keepalive_connections=20),
)

async def get_response(
self,
Expand Down
Loading