Frontendi dodatni #3

Merged
svitvojimilioni merged 3 commits from dev into master 2024-02-09 11:16:50 +00:00
1 changed files with 6 additions and 3 deletions
Showing only changes of commit ea6ba7464c - Show all commits

View File

@ -1,13 +1,16 @@
import ollama import ollama
import scraper_functions as sf import scraper_functions as sf
import random
from frontends import FRONTENDS
def processmsg(msg, rcpt): def processmsg(msg, rcpt):
if "youtube.com/watch" in msg: if msg.startswith("!"):
return msg.replace("youtube.com", "iv.datura.network")
elif msg.startswith("!"):
return command(msg, "") return command(msg, "")
elif "good bot" in msg: elif "good bot" in msg:
return "^_^" return "^_^"
for big_tech_site in FRONTENDS:
if big_tech_site in msg:
return "libre link: " + msg.replace(big_tech_site, random.choice(FRONTENDS[big_tech_site]))
def command(msg, rcpt): def command(msg, rcpt):
if msg.startswith("!help"): if msg.startswith("!help"):