style(loop): compact empty outbound message construction

This commit is contained in:
Re-bin
2026-02-21 08:27:49 +00:00
parent 012a5e78e5
commit 0b30f514b4

View File

@@ -244,10 +244,7 @@ class AgentLoop:
await self.bus.publish_outbound(response)
elif msg.channel == "cli":
await self.bus.publish_outbound(OutboundMessage(
channel=msg.channel,
chat_id=msg.chat_id,
content="",
metadata=msg.metadata or {},
channel=msg.channel, chat_id=msg.chat_id, content="", metadata=msg.metadata or {},
))
except Exception as e:
logger.error("Error processing message: {}", e)