add configurable llm timeout
Build and Push Containers / build-and-push-app (push) Successful in 1m44s
Build and Push Containers / build-and-push-db (push) Successful in 12s

This commit is contained in:
2026-09-07 22:01:53 -04:00
parent e2bed52751
commit 894637108c
3 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -186,7 +186,7 @@ class LLMClient:
self._client = AsyncOpenAI(
base_url=self.settings.llm_base_url,
api_key=self.settings.effective_api_key,
timeout=120.0,
timeout=self.settings.llm_timeout,
)
async def _post_embeddings(self, texts: list[str]) -> list[list[float]]: