fix codegen timeout

This commit is contained in:
Denton Social
2026-09-24 03:39:48 -05:00
parent 300c20714b
commit bb97a09caa
5 changed files with 44 additions and 5 deletions
+4
View File
@@ -72,6 +72,10 @@ class CodegenClient:
raise CodegenError(
f"codegen endpoint unreachable at {url}: {exc}. Is your local server running?"
) from exc
except TimeoutError as exc:
raise CodegenError(
f"codegen request timed out after {self.timeout}s at {url}"
) from exc
return payload["choices"][0]["message"]["content"]