mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-04-14 23:19:55 +00:00
style(loop): compact empty outbound message construction
This commit is contained in:
parent
012a5e78e5
commit
0b30f514b4
@ -244,10 +244,7 @@ class AgentLoop:
|
|||||||
await self.bus.publish_outbound(response)
|
await self.bus.publish_outbound(response)
|
||||||
elif msg.channel == "cli":
|
elif msg.channel == "cli":
|
||||||
await self.bus.publish_outbound(OutboundMessage(
|
await self.bus.publish_outbound(OutboundMessage(
|
||||||
channel=msg.channel,
|
channel=msg.channel, chat_id=msg.chat_id, content="", metadata=msg.metadata or {},
|
||||||
chat_id=msg.chat_id,
|
|
||||||
content="",
|
|
||||||
metadata=msg.metadata or {},
|
|
||||||
))
|
))
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error("Error processing message: {}", e)
|
logger.error("Error processing message: {}", e)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user