def __init__(
self,
*,
uuid: Optional[UUID] = None,
no_human_input_msg: str,
sender: Optional["Agent"] = None,
recipient: "Agent",
):
super().__init__(
uuid=uuid,
no_human_input_msg=no_human_input_msg,
sender_name=sender.name if sender else "No sender",
recipient_name=recipient.name,
)