fix: use websockets backend, simplify subtype check, add Slack docs

This commit is contained in:
Re-bin
2026-02-09 11:39:13 +00:00
parent 74e3c411a1
commit f3ab8066a7
3 changed files with 45 additions and 6 deletions

View File

@@ -246,7 +246,7 @@ class AgentLoop:
channel=msg.channel,
chat_id=msg.chat_id,
content=final_content,
metadata=msg.metadata or {},
metadata=msg.metadata or {}, # Pass through for channel-specific needs (e.g. Slack thread_ts)
)
async def _process_system_message(self, msg: InboundMessage) -> OutboundMessage | None: