(to: str, content: str)
| 815 | return spawn_teammate_thread(name, role, prompt) |
| 816 | |
| 817 | def run_send_message(to: str, content: str) -> str: |
| 818 | BUS.send("lead", to, content) |
| 819 | return f"Sent to {to}" |
| 820 | |
| 821 | def run_check_inbox() -> str: |
| 822 | msgs = consume_lead_inbox(route_protocol=True) |