feat: implemented basic belief-from-text extractor

The communication with other agents has been tested with mock data as the other agents (transcriber and belief collector) are not yet implemented.

ref: N25B-208
This commit is contained in:
Storm
2025-10-24 17:25:25 +02:00
parent 9b36982bf2
commit bece44bf7d
4 changed files with 119 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
import spade
from spade.agent import Agent
import logging
from control_backend.agents.bdi.behaviours.text_belief_extractor import BeliefFromText
class TBeliefExtractor(Agent):
async def setup(self):
self.b = BeliefFromText()
self.add_behaviour(self.b)