matrix_chatgpt_bot/send_message.py
2023-03-14 22:37:30 +08:00

16 lines
562 B
Python

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