Merge pull request #24 from h1ddenpr0cess20/dev

finally added markdown rendering
This commit is contained in:
Dustin 2024-08-14 19:45:30 -04:00 committed by GitHub
commit c327b3388a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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