From 8a049aa084a65f181fd2d748706c87a11841b555 Mon Sep 17 00:00:00 2001 From: retoor Date: Tue, 1 Apr 2025 09:07:09 +0000 Subject: [PATCH] fix: change default Ollama URL scheme from HTTPS to HTTP in client.py --- client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.py b/client.py index 94a1dbf..1259299 100644 --- a/client.py +++ b/client.py @@ -6,7 +6,7 @@ import argparse from urllib.parse import urlparse, urlunparse DEFAULT_CONCURRENCY = 4 -DEFAULT_OLLAMA_URL = 'https://localhost:11434' +DEFAULT_OLLAMA_URL = 'http://localhost:11434' logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')