fix(qdrant): increase embedding API timeout to 30s to allow Ollama VRAM cold-starts

This commit is contained in:
2026-05-03 18:38:27 +02:00
parent b36dde77d8
commit c7c7ce29f8

View File

@@ -141,7 +141,7 @@ class QdrantBase:
url,
json=payload,
headers=headers,
timeout=12,
timeout=30,
)
if resp.status_code != 200:
logger.debug(f"Embedding API Error {resp.status_code}: {resp.text}")