open for all users
This commit is contained in:
parent
1c09b57c70
commit
5db4e6bad3
2 changed files with 10 additions and 6 deletions
BIN
.DS_Store
vendored
Normal file
BIN
.DS_Store
vendored
Normal file
Binary file not shown.
16
mbot.py
16
mbot.py
|
@ -53,18 +53,22 @@ def main():
|
||||||
|
|
||||||
content = mention['status']['content']
|
content = mention['status']['content']
|
||||||
username = mention['status']['account']['username']
|
username = mention['status']['account']['username']
|
||||||
|
user_url = mention['status']['account']['url']
|
||||||
prompt = html2text.html2text(content)
|
prompt = html2text.html2text(content)
|
||||||
|
|
||||||
if username != "maxheadroom":
|
print(f"From {username} given {content} \n {mention['id']}")
|
||||||
continue
|
|
||||||
|
#if username != "maxheadroom":
|
||||||
|
# continue
|
||||||
|
|
||||||
response = send_to_ollama(prompt, config)
|
response = send_to_ollama(prompt, config)
|
||||||
if not response or config['mastodon']['bot_username'] in response:
|
if not response:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
masto.status_post(
|
masto.status_reply(
|
||||||
status=f"@{username} {response}",
|
to_status=mention['status'],
|
||||||
in_reply_to_id=mention['status']['id'],
|
status=f"{username} {response}",
|
||||||
|
untag = True,
|
||||||
visibility=config['mastodon']['default_visibility']
|
visibility=config['mastodon']['default_visibility']
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue