From b394d586dd1fc969485c2a08d85833564d6fbba8 Mon Sep 17 00:00:00 2001 From: retoor <retoor@molodetz.nl> Date: Tue, 1 Apr 2025 11:07:09 +0200 Subject: [PATCH] Changed https to http. --- 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')