Parcourir la source

fix: ollama upload url

Timothy J. Baek il y a 1 an
Parent
commit
92cc87d908
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      backend/apps/ollama/main.py

+ 1 - 1
backend/apps/ollama/main.py

@@ -1060,7 +1060,7 @@ def upload_model(file: UploadFile = File(...), url_idx: Optional[int] = None):
                     hashed = calculate_sha256(f)
                     f.seek(0)
 
-                    url = f"{ollama_url}/blobs/sha256:{hashed}"
+                    url = f"{ollama_url}/api/blobs/sha256:{hashed}"
                     response = requests.post(url, data=f)
 
                     if response.ok: