fix: remove http2=True — h2 package not installed on Штурвал
Deploy contracts-flask / validate (push) Successful in 0s

This commit is contained in:
2026-07-15 12:13:08 +04:00
parent 49dd873db3
commit d8d53661d9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ class HttpxLLMClient:
"max_tokens": self.max_tokens,
"temperature": self.temperature,
}
with httpx.Client(http2=True, timeout=self.timeout, verify=True) as client:
with httpx.Client(timeout=self.timeout, verify=True) as client:
resp = client.post(
self.url,
json=payload,