chore: cleanup

made llm get url from settings
cleanup uneceserry fstring

ref: N25B-207
This commit is contained in:
JobvAlewijk
2025-10-28 11:07:28 +01:00
parent c5b71450fc
commit 17056da832
3 changed files with 17 additions and 17 deletions

View File

@@ -59,10 +59,9 @@ class BDICoreAgent(BDIAgent):
class SendBehaviour(OneShotBehaviour):
async def run(self) -> None:
msg = Message(
to=f"{settings.agent_settings.test_agent_name}@"
f"{settings.agent_settings.host}",
body=text,
thread="llm_request",
to= settings.agent_settings.test_agent_name + '@' + settings.agent_settings.host,
body= text,
thread= "llm_request",
)
msg.set_metadata("performative", "inform")
await self.send(msg)