From c7c7ce29f8858039707408231214e6a80c69e8b3 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Sun, 3 May 2026 18:38:27 +0200 Subject: [PATCH] fix(qdrant): increase embedding API timeout to 30s to allow Ollama VRAM cold-starts --- GramAddict/core/qdrant_memory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GramAddict/core/qdrant_memory.py b/GramAddict/core/qdrant_memory.py index f7222a3..cc31eaf 100644 --- a/GramAddict/core/qdrant_memory.py +++ b/GramAddict/core/qdrant_memory.py @@ -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}")