diff --git a/jimmy/cogs/chat.py b/jimmy/cogs/chat.py index 7149eeb..3d36c05 100644 --- a/jimmy/cogs/chat.py +++ b/jimmy/cogs/chat.py @@ -329,7 +329,7 @@ class Chat(commands.Cog): base_url=_cfg["url"], auth=(_cfg["username"], _cfg["password"]) ) as http_client: - response = await http_client.get(f"/threads/threads:{thread_id}") + response = await http_client.get(f"/ollama/thread/threads:{thread_id}") if response.status_code == 200: thread = await response.json() messages = thread["messages"]