finally added markdown rendering

This commit is contained in:
Dustin 2024-08-14 19:44:20 -04:00
parent 81e09a8969
commit 1fd00a9d78

View File

@ -10,7 +10,7 @@ import json
import datetime
import asyncio
import requests
import markdown
class ollamarama:
def __init__(self):
#load config file
@ -67,7 +67,10 @@ class ollamarama:
await self.client.room_send(
room_id=channel,
message_type="m.room.message",
content={"msgtype": "m.text", "body": message},
content={"msgtype": "m.text",
"body": message,
"format": "org.matrix.custom.html",
"formatted_body": markdown.markdown(message, extensions=['fenced_code', 'nl2br'])},
)
# add messages to the history dictionary