diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/.DS_Store differ diff --git a/mbot.py b/mbot.py index c93179d..8171027 100644 --- a/mbot.py +++ b/mbot.py @@ -53,18 +53,22 @@ def main(): content = mention['status']['content'] username = mention['status']['account']['username'] + user_url = mention['status']['account']['url'] prompt = html2text.html2text(content) - if username != "maxheadroom": - continue + print(f"From {username} given {content} \n {mention['id']}") + + #if username != "maxheadroom": + # continue response = send_to_ollama(prompt, config) - if not response or config['mastodon']['bot_username'] in response: + if not response: continue - masto.status_post( - status=f"@{username} {response}", - in_reply_to_id=mention['status']['id'], + masto.status_reply( + to_status=mention['status'], + status=f"{username} {response}", + untag = True, visibility=config['mastodon']['default_visibility'] )