From 2da02946edc9056f53554d879c858fbc634b5419 Mon Sep 17 00:00:00 2001 From: Kasper Marinus Date: Wed, 29 Oct 2025 13:21:55 +0100 Subject: [PATCH] chore: remove manual testing function ref: N25B-197 --- src/control_backend/agents/bdi/bdi_core.py | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/control_backend/agents/bdi/bdi_core.py b/src/control_backend/agents/bdi/bdi_core.py index d928a71..7908507 100644 --- a/src/control_backend/agents/bdi/bdi_core.py +++ b/src/control_backend/agents/bdi/bdi_core.py @@ -33,14 +33,4 @@ class BDICoreAgent(BDIAgent): def _send_to_llm(self, message) -> str: """TODO: implement""" - return f"This is a reply to {message}" - - -async def main(): - bdi = BDICoreAgent("test_agent@localhost", "test_agent", "src/control_backend/agents/bdi/rules.asl") - await bdi.start() - bdi.bdi.set_belief("test", "one", "two") - print(bdi.bdi.get_beliefs()) - -if __name__ == "__main__": - asyncio.run(main()) \ No newline at end of file + return f"This is a reply to {message}" \ No newline at end of file