feat: LLM agent

body:   added the llmAgent class and made it run at the start.
        modified the bdi_core to send a test message and recieve an awnser from LLM agent
        Added a connection to a local llm via lmstudio.

        Tests are Tba.

ref: N25B-207
This commit is contained in:
JobvAlewijk
2025-10-27 14:21:18 +01:00
parent 9b36982bf2
commit c5b71450fc
6 changed files with 222 additions and 16 deletions

View File

@@ -6,9 +6,10 @@ class ZMQSettings(BaseModel):
internal_comm_address: str = "tcp://localhost:5560"
class AgentSettings(BaseModel):
host: str = "localhost"
host: str = "xmpp.twirre.dev"
bdi_core_agent_name: str = "bdi_core"
belief_collector_agent_name: str = "belief_collector"
llm_agent_name: str = "llm_agent"
test_agent_name: str = "test_agent"
class Settings(BaseSettings):