diff --git a/jimmy/cogs/chat.py b/jimmy/cogs/chat.py index 3d36c05..2ca5c97 100644 --- a/jimmy/cogs/chat.py +++ b/jimmy/cogs/chat.py @@ -331,7 +331,7 @@ class Chat(commands.Cog): ) as http_client: response = await http_client.get(f"/ollama/thread/threads:{thread_id}") if response.status_code == 200: - thread = await response.json() + thread = response.json() messages = thread["messages"] thread = OllamaThread( messages=[{"role": m["role"], "content": m["content"]} for m in messages],