Remove SPADE dependency #29

Merged
k.marinus merged 28 commits from refactor/remove-spade into dev 2025-11-25 10:26:07 +00:00
Showing only changes of commit 2d4f9a3323 - Show all commits

View File

@@ -11,9 +11,6 @@ class ZMQSettings(BaseModel):
class AgentSettings(BaseModel):
# connection settings
host: str = "localhost"
# agent names
bdi_core_name: str = "bdi_core_agent"
bdi_belief_collector_name: str = "belief_collector_agent"
@@ -25,9 +22,6 @@ class AgentSettings(BaseModel):
ri_communication_name: str = "ri_communication_agent"
robot_speech_name: str = "robot_speech_agent"
# default SPADE port
default_spade_port: int = 5222
class BehaviourSettings(BaseModel):
sleep_s: float = 1.0