Selaa lähdekoodia

fix: ollama text embedding 500 error (#8131)

crazywoola 7 kuukautta sitten
vanhempi
commit
a27d4d58ec

+ 2 - 1
api/core/model_runtime/model_providers/ollama/text_embedding/text_embedding.py

@@ -89,7 +89,8 @@ class OllamaEmbeddingModel(TextEmbeddingModel):
             endpoint_url,
             headers=headers,
             data=json.dumps(payload),
-            timeout=(10, 300)
+            timeout=(10, 300),
+            options={"use_mmap": "true"}
         )
 
         response.raise_for_status()  # Raise an exception for HTTP errors