From 7f500db043fe3f250e47ddf096374a3e43b9052b Mon Sep 17 00:00:00 2001 From: nexy7574 Date: Fri, 7 Jun 2024 20:47:57 +0100 Subject: [PATCH] truth -> truths --- src/cogs/ollama.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cogs/ollama.py b/src/cogs/ollama.py index b407626..2a9bc0e 100644 --- a/src/cogs/ollama.py +++ b/src/cogs/ollama.py @@ -1191,7 +1191,7 @@ class Ollama(commands.Cog): username = CONFIG["truth"].get("username", "1") password = CONFIG["truth"].get("password", "2") response = await client.get( - "%s/truth/%s" % (r, truth_id), + "%s/truths/%s" % (r, truth_id), timeout=60, auth=(username, password), )