From 52ad1de7cd3d017764bcc0248adb557af5bf8a18 Mon Sep 17 00:00:00 2001 From: Bram van den Heuvel Date: Wed, 1 Jul 2026 18:07:07 +0200 Subject: [PATCH] HOTFIX: Prevent RemoteAgent import to avoid needless dependency --- agents/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/agents/__init__.py b/agents/__init__.py index 225b0cc..8d8b1c3 100644 --- a/agents/__init__.py +++ b/agents/__init__.py @@ -10,11 +10,9 @@ from .agent import Agent from .chaos import AgentOfChaos from .mute import MuteAgent -from .remote import RemoteAgent __all__ = [ "Agent", "AgentOfChaos", "MuteAgent", - "RemoteAgent", ]