Mn Bots
20.1K subscribers
8 photos
1 file
23 links
This is the official Telegram channel of MN Bots.

GitHub: github.com/mn-bots
All our public repositories are available there.

#mnbots #mntgxo
Download Telegram
Shoban Ai Llama By @mnbots.php
1.1 KB
❀2
πŸŒ™ Ramzan Mubarak

May this blessed month bring peace, success, and strong defensesβ€”both online and offline. Stay ethical, stay secure!

Ramzan Mubarak! πŸ•Œβœ¨

iniyenkilum nannavu mwone πŸ™‚
Please open Telegram to view this post
VIEW IN TELEGRAM
❀10πŸ”₯3πŸ₯°2πŸ‘1πŸ‘1😍1🌚1
This media is not supported in the widget
VIEW IN TELEGRAM
πŸ‘6❀2
✨ ShobanaFilterBot Update! ✨

β€’  πŸ”— https://github.com/mn-bots/ShobanaFilterBot
β€’  New Features:
  β€’  πŸ”„ Auto-restart
  β€’  ❀️ Keep-alive function (Koyeb sleep problem solved!)

Found a bug? Report it at: @mnbots_support
❀1πŸ‘1
need multi functional bot?
like delete , download or transfer your collections from mongo db url πŸ™‚
❀4πŸ‘4😍2
This media is not supported in the widget
VIEW IN TELEGRAM
πŸ‘6❀3
#NEWBOT
πŸ₯³ Meet @DB_Clean_Bot!

🌟 I'm an Advanced Bot with multiple features.

✨ Commands you can use:

-
/randomfact - Get a random fact.
-
/getsub - Get subtitles for a video.
-
/md5 - Generate an MD5 Hash.
-
/paste - Use paste bin.
-
/carbon - Create a carbon image.
-
/font - Make your text stylish.
-
/telegraph - Upload photos to telegraph.
-
/repo - Search GitHub repos.
-
/mongo - Connect to a MongoDB instance.
-
/zip - Compress files.
-
/unzip - Extract files.
-
/shorten - Shorten a URL.
-
/expand - Expand a shortened URL.
-
/qrcode - Generate a QR code.
-
/stickerid - Get a sticker ID.
-
/calc - Evaluate a math expression.
-
/whois - Fetch WHOIS data.

Should you encounter any issues or error messages, please do not hesitate to report them in our support group:
@MNBOTS_SUPPORT


BOT LINK:- @DB_Clean_Bot πŸ˜€
Please open Telegram to view this post
VIEW IN TELEGRAM
❀8πŸ‘4
This media is not supported in the widget
VIEW IN TELEGRAM
πŸ‘5❀3⚑2
Are there any URL shortener websites that offer a good CPM?
Happy Vishu πŸŽ‡
Please open Telegram to view this post
VIEW IN TELEGRAM
#12k Special

πŸ”₯ Introducing Tamil Blasters RSS Bot! πŸ”₯

Tired of manually checking 1TamilBlasters for new torrents? This bot automates the process, posting new torrent files directly to your Telegram channel! πŸ€–

Key Features:
β€’ πŸš€ Automatic Torrent Fetching: Scrapes 1TamilBlasters for the newest torrents.
β€’ πŸ› οΈ Flask Health Check: Built-in web server to monitor the bot's status.
β€’ βœ‚οΈ Safe Message Splitting: Avoids message truncation in Telegram.
β€’ πŸ”„ Threaded Flask Server: Ensures smooth bot operation.
β€’ ☁️ Cloud Deployment Ready: Easily deploy to Koyeb, Render, and more.

➑️ Get it on GitHub: https://github.com/mn-bots/Tamil-Blasters-Rss-Bot

#TelegramBot #Torrents #1TamilBlasters #OpenSource #Automation #Koyeb #Render #MNBots
❀5πŸ‘4⚑1😍1🌚1πŸ†1
What features could a bot have to help avoid copyright issues?
πŸ‘2
RSS repositories for YTS.mx, Nyaa.si, and EZTV are coming soon!
❀4πŸ†3😍2⚑1🌚1
Add @DB_Clean_Bot to your group to automatically delete messages after 5 seconds (excluding bot messages)
πŸ‘3⚑2😒1πŸ†1
✨ Introducing our new bot! πŸ€– @Auto_Delete_MnBot πŸ€– πŸ—„οΈ

πŸ”₯ Key Benefits:

β€’ ⏱️ Save Time: Auto-delete messages and auto-accept join requests – reclaim your day!
β€’ 🧹 Stay Organized: Keep your group clean, efficient, and focused.

Type /help to unlock a world of easy management! πŸ”‘

βš™οΈ Command Central:

β€’ /start: πŸ‘‹ Get started with a friendly welcome!
β€’ /help: ❓ Unlock the full command list.
β€’ /setdelay: ⏳ Control how long messages linger before deletion.
β€’ /toggledelete: πŸ”„ Turn auto-deletion on or off with ease. _Note: Currently limited to user messages._
β€’ /approve: βœ… Automatically welcome new members.
β€’ /settings: πŸ“Š Customize your auto-management setup.

⚠️ Found a Bug or Have a Suggestion? Report it to the dev team @mnbots_support so we can make it even better! πŸ›

(Note: I attempted to add bot message deletion, but it seems a userbot is required for that functionality.)
❀6πŸ‘6πŸ”₯2⚑1😍1🌚1
Should we create APIs for the public 🫣?
πŸ‘7❀1
Api Url = https://mnbots-api.vercel.app/


Endpoint= chat



Example Code

import httpx
from pyrogram import Client, filters, enums
from pyrogram.types import Message

# Helper: call your Koyeb-hosted FastAPI /chat endpoint
async def fetch_ai_response(prompt: str) -> str:
    url = "https://mnbots-api.vercel.app/chat"
    payload = {
        "messages": [{"role": "user", "content": prompt}],
        "stream": False
    }
    async with httpx.AsyncClient(timeout=None) as http_client:
        resp = await http_client.post(url, json=payload)
        resp.raise_for_status()
        data = resp.json()
    return data["choices"][0]["message"]["content"]

# Register the /ask handler using class decorator
@Client.on_message(filters.command("ask") & filters.private)
async def ask_handler(client: Client, message: Message):
    if len(message.command) < 2:
        return await message.reply("Usage: /ask <your question>")

    prompt = message.text.split(maxsplit=1)[1]

    # Show "typing..." action
    await client.send_chat_action(
        chat_id=message.chat.id,
        action=enums.ChatAction.TYPING
    )

    try:
        answer = await fetch_ai_response(prompt)
        await message.reply(answer)
    except Exception as e:
        await message.reply(f"⚠️ API error: {e}")
πŸ‘7❀4😒1