refactor: remove SPADE dependencies

Did not look at tests yet, this is a very non-final commit.

ref: N25B-300
This commit is contained in:
2025-11-20 14:35:28 +01:00
parent 6025721866
commit bb3f81d2e8
20 changed files with 757 additions and 1683 deletions

View File

@@ -1,12 +1,11 @@
import logging
from spade.agent import Agent
from control_backend.core.agent_system import BaseAgent as CoreBaseAgent
class BaseAgent(Agent):
class BaseAgent(CoreBaseAgent):
"""
Base agent class for our agents to inherit from.
This ensures that all agents have a logger.
"""
logger: logging.Logger