chore: remove manual testing function

ref: N25B-197
This commit is contained in:
2025-10-29 13:21:55 +01:00
parent 3b7aeafe5e
commit 2da02946ed

View File

@@ -33,14 +33,4 @@ class BDICoreAgent(BDIAgent):
def _send_to_llm(self, message) -> str: def _send_to_llm(self, message) -> str:
"""TODO: implement""" """TODO: implement"""
return f"This is a reply to {message}" 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())