matrix_chatgpt_bot/send_message.py
2023-03-22 22:28:22 +08:00

20 lines
701 B
Python

from nio import AsyncClient
async def send_room_message(client: AsyncClient,
room_id: str,
send_text: str,
reply_to_event_id: str = '') -> None:
if reply_to_event_id == '':
content = {"msgtype": "m.text", "body": f"{send_text}", }
else:
content={"msgtype": "m.text", "body": f"{send_text}",
"m.relates_to": {"m.in_reply_to": {"event_id": reply_to_event_id}}, }
await client.room_send(
room_id,
message_type="m.room.message",
content=content,
ignore_unverified_devices=True,
)
await client.room_typing(room_id, typing_state=False)