merge dev into main #49

Merged
8464960 merged 430 commits from dev into main 2026-01-28 10:49:15 +00:00
Showing only changes of commit 2da02946ed - Show all commits

View File

@@ -34,13 +34,3 @@ 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())