Budget: 2400 UAH Deadline: 2 days
Hello, Ruslan! 👋
I am ready to help you with the development of a Telegram script for parsing, cleaning, and AI-uniqueness of content.
I have reviewed your task. The project is clear to me: it is necessary to create a script in Python that will monitor posts in the specified Telegram channel in real-time, process them by removing unnecessary links and usernames, and send the cleaned text to a neural network for uniqueness, and then publish the updated content in another channel.
I have over 10 years of commercial experience in software development and practical experience in tasks related to automation and data processing.
🔧 I will perform:
— monitoring posts using UserBot/Telethon/Pyrogram;
— filtering and cleaning content from external links and usernames;
— integration with a neural network for text uniqueness via API;
— transferring media files and publishing updated content;
— the ability to send posts for pre-moderation.
✅ On my part, I will do everything carefully, without unnecessary complications, with attention to detail and the convenience of further work.
🎁 As a small bonus within the project, I can additionally provide instructions for further work with the system and recommendations for improving results.
🤝 I also always stay in touch with my clients and am ready to help with any questions regarding the project.
🌐 My portfolio with recent cases:
https://mrnko.com
💼 Freelancehunt profile: Freelancehunt
🤝 I would be happy to discuss the details, answer your questions, and offer the optimal solution for your project.
Budget: 3000 UAH Deadline: 1 day
Good day! I develop in Python, have worked on similar projects with React/Node.js, and am ready for collaboration.
Budget: 2000 UAH Deadline: 1 day
Hello.
I am developing bots for Telegram using NodeJS. I am ready to take on the project. Write to me, and we will discuss.
Budget: 3000 UAH Deadline: 3 days
Good day! I will create a Telegram script in Python (Telethon/Pyrogram, UserBot) according to your specifications:
• instant monitoring of the donor channel in real-time (even without admin rights);
• cleaning: removal of links and usernames, blacklist of words/phrases (the post is either cleaned or ignored);
• AI rewriting of the cleaned text via API (ChatGPT/Claude/free alternative), prompt — in a separate file for easy editing;
• transfer of media (photos/videos) with the already modified text;
• optionally: pre-moderation in a closed chat / delayed before publication.
I have experience with Telethon and AI integrations — I will do it reliably, with error handling and logs. Please clarify: how many source channels and where to publish (one channel or several)? Ready to start today.
Budget: 2500 UAH Deadline: 2 days
Hello, I have a ready-made parser for Telegram channels, we just need to add validation and AI. I will also do message moderation. Write to me, let's start working.
I will support your project and fix issues even after the completion is confirmed.- Projects -
- Rating -
- Rating 702
Budget: 4000 UAH Deadline: 4 days
Good day.
I will implement a script using Pyrogram or Telethon to intercept posts through a UserBot session, as this is the only solution for monitoring other channels without administrator rights.
To send the prepared content to a pre-moderation channel or directly to the recipient, I will connect a regular bot using python-telegram-bot.
Technical solution:
Monitoring and media: The Pyrogram handler will catch the on_message event. If the post contains a media group (multiple images or videos), the script will combine them by media_group_id, download them to a temporary folder, link them with the processed text, and send them as a single album via send_media_group.
Text cleaning: I will write regular expressions to cut out links and usernames via @. I will place the blacklist of words in a text file blacklist.txt: if the string contains a stop word, the script will completely skip the post or delete a specific sentence.
Integration with AI: I will connect the official openai or anthropic library. The prompt for rewriting will be placed in a file prompt.txt. The script will read it with each request, allowing for on-the-fly instruction changes without restarting the user bot.
Pre-moderation: I will add a mode switch to the config. When pre-moderation is enabled, the post will go to your private work chat with two inline buttons: "Publish" and "Delete." When the first button is pressed, the bot forwards the message to the target channel.
Which neural network do you plan to use (OpenAI API, Anthropic, or the free OpenRouter), and is it necessary to save the history of posts in a local SQLite database to avoid duplicates when editing old records by the donor?
Budget: 4000 UAH Deadline: 3 days
Good day!
I have reviewed your request regarding the development of a Telegram script for monitoring, processing, and unique content creation. This task fully aligns with my expertise in developing automated systems and working with the Telegram API, as well as applying artificial intelligence for natural language processing.
Proposed solution:
I will develop a script in Python that will use libraries to interact with the Telegram API (for example, pyrogram or telethon for monitoring and python-telegram-bot for publishing).
1. Real-time monitoring: The script will continuously monitor the specified donor channel and instantly respond to the appearance of new posts.
2. Parsing and cleaning: The obtained content will be automatically parsed and cleaned according to your requirements (for example, removing certain links, hashtags, or formatting).
3. AI-based content uniqueness: Advanced natural language processing models (LLM) will be integrated for text uniqueness. This will allow for rephrasing, rewriting, or adapting content while preserving its original meaning but making it unique for the target channel.
4. Publishing: Processed and unique posts will be automatically published to the Telegram channel you specify.
To clarify details and ensure the best result, I would like to ask a few questions:
1. Are there specific rules or examples of what exactly needs to be "cleaned" in the content (for example, removing certain URLs, contacts, advertising inserts)?
2. What is the desired level of content "uniqueness"? Is light rephrasing sufficient, or is a complete rewrite with changes in style or tone needed?
I would be happy to discuss the project in more detail.
Budget: 3500 UAH Deadline: 2 days
I have already created a Telegram parser with AI rewriting of posts several times. I will use a userbot on Telethon; it captures new posts from the donor channel in real-time without admin rights, then cleaning and unique generation through GPT. It can be done in two days if there is only one donor. Is the donor channel public or private?
Budget: 4000 UAH Deadline: 3 days
Good day. I will write a userbot script in Python for automatic interception, unique generation, and publication of posts.
I will implement the task based on the Pyrogram or Telethon library — this will allow reading the donor channel from your account without administrator rights. I will create a text cleaning module using regular expressions: it will remove all links, @usernames, and check the text against your blacklist of stop words.
For unique generation, I will connect the ChatGPT or Claude API. The AI settings (the prompt itself) as well as the lists of stop words will be placed in a separate configuration file config.json, so you can edit them at any time without interfering with the code. The script will correctly intercept media files (including albums) and attach the rewritten text to them. For quality control, I will set up the sending of finished posts to a closed pre-moderation chat.
Are you planning to run the script locally on your PC, or will you need help setting up a remote server (VPS) for round-the-clock operation?
Budget: 4000 UAH Deadline: 3 days
Hello, Ruslan!
The user bot on Telethon captures posts with events in real-time, without polling the channel.
Technical details I am laying out:
- When Telegram limits the action frequency (FloodWait), the library itself returns the exact number of seconds to wait - I catch this value and wait exactly that long, rather than guessing with a fixed delay, otherwise I either unnecessarily slow down the work or get a longer ban.
- If the donor edits an old post - I either republish it with a new rewrite or ignore it, we decide in advance, otherwise there will be duplicates or silent omissions.
- I check the blacklist twice - before and after the rewrite, because the rewrite sometimes returns a similar word in different words.
- If the free neural network refuses to rewrite the text - the post does not disappear silently, but comes to you with a "not processed" tag.
About the neural network: API payment is on your side, it is not included in my development cost, this is a constant expense depending on the number of posts. By default, I recommend the paid ChatGPT or Claude - the quality of the rewrite is noticeably better than that of free analogs, and with your volume of posts, the API cost usually turns out to be small (a few dollars a month). If a free option is fundamentally needed - I will do it, taking into account the risk of refusals mentioned above.
Pre-moderation - a separate Bot API bot with buttons in a closed chat, the user bot only reads.
Two things for an accurate estimate: how many donor channels we are monitoring - one or several, and whether pre-moderation is needed right from the start, or can it be added later.
Budget: 1234 UAH Deadline: 1 day
Hello! I have experience in developing Telegram scripts in Python for parsing, content filtering, and integrating with AI for text uniqueness. I would be happy to help you.
Budget: 6000 UAH Deadline: 4 days
I will develop a Telegram UserBot for monitoring, filtering, AI rewriting, and publishing content. Stack: Python, Telethon/Pyrogram, DeepSeek API. Real-time monitoring of the donor channel. Removal of links, usernames, blacklisting of stop words. AI rewriting through DeepSeek/OpenAI/Claude (prompt in a separate file). Publishing with media + optionally pre-moderation. Example: @MRAi_Demo_Bot AI bot with neural network integration. Ready to discuss. Safe deal.
Budget: 12000 UAH Deadline: 7 days
Hello!
This is exactly what I worked on in my own project — I built a pipeline that monitors several source Telegram channels, cleans and processes content through LLM, and publishes the final result with media to the target channel, including a manual pre-moderation step before publication. I can show the architecture and code: github.com/Pitchbrowatch/factify
Regarding your requirements:
1. Monitoring without admin rights in the donor channel — I do this through Telethon (userbot session), catching new posts in real-time via an event handler, without the need for polling.
2. Cleaning — regular expressions to remove links/usernames, a blacklist of words/phrases in a separate config — easily expandable, you will be able to add words yourself without modifying the code.
3. AI uniqueness — integration with OpenAI/Claude API (or through OpenRouter if you want access to multiple models via one API key, which is often cheaper). I will place the prompt in a separate file/config — editable without touching the rest of the code.
4. Publishing — transferring media (photos/videos) with new text — I have already implemented this in my pipeline. Optional pre-moderation — I will do this by sending to a personal/private chat with inline buttons Publish/Reject — just like I have already implemented.
I am ready to discuss the details: how many source channels you plan to monitor, which model from the neural networks is preferable (budget for API), and whether you need the pre-moderation mode from the start or if it can be added later.
Deadline: 5-7 days. Cost: we will discuss after clarifying the details.
Budget: 6000 UAH Deadline: 3 days
Hello! The task is completely clear. I specialize in developing asynchronous Telegram systems (aiogram 3.x, Pyrogram / Telethon) and integrating artificial intelligence (OpenAI / Anthropic) into real services.
Here’s how I will implement your project:
24/7 Monitoring: I will write a UserBot on Pyrogram that will instantly intercept new posts from the donor channel in real-time without the need for administrator rights there.
Cleaning and Filtering: The script will automatically remove external links, usernames using regular expressions (re), and will check against your blacklist of words (filtering for ignoring or cutting text).
AI Rewriting (Uniqueness): I will set up asynchronous integration with the OpenAI API or Anthropic (your choice). The system prompt for the neural network will be placed in a separate file (prompts.txt or .env), so you can change the rewriting style at any time without editing the code. I will implement error handling and retries in case of API failures.
Working with Media: The bot will correctly transfer individual photos/videos and media groups (albums), attaching already unique text to them.
Pre-moderation Mode: I will implement flexible settings: the bot will be able to send ready posts first to your private admin chat with two buttons: [Publish] and [Reject]. This guarantees 100% quality control.
Result: I will deliver clean, documented code. I will package the project in a Docker container for stable 24/7 operation on any server (VPS) with one click.
I am ready to discuss details and the API provider. Feel free to write, I will be happy to collaborate!
Budget: 3500 UAH Deadline: 4 days
Hello, Ruslan!
I have done a similar task — a bot in Python for automatic monitoring of a source and auto-posting content, you can check it out in my portfolio.
Regarding your task: I will use a userbot on Pyrogram/Telethon — it catches new posts from the donor channel without admin rights. Then, I will clean the text using regex (links, usernames) plus a separate blacklist.txt with stop words — if there’s a match, the post is either cleaned or skipped entirely. The cleaned text will go for rewriting through ChatGPT/Claude API, and I will provide the prompt in a separate text file so you can change it to fit your style without editing the code. Media will be downloaded and combined with the finished text. The final post will be sent to you in a private chat for pre-moderation with buttons "publish" / "delete" — control from your phone with one click.
I will deploy it on hosting so it works 24/7 without your computer.
I estimate 3-4 days for completion, considering testing on your channel to ensure everything works smoothly. I am ready to fit within your budget.
If this works for you — let me know, and we can discuss the details: which donor channel, where to post, and which stop words are needed right away.
- Projects -
- Rating -
- Rating 256
Budget: 2500 UAH Deadline: 3 days
Hello!
Great task, the logic of the script is completely clear. I have extensive experience in developing Telegram scripts in Python (using Telethon / Pyrogram), as well as in integrating various LLMs (OpenAI, Anthropic, OpenRouter) for processing text content.
Budget: 8000 UAH Deadline: 5 days
Ready to take on the task - I have practical experience specifically with this stack: Telethon/Pyrogram (userbot monitoring channels without admin rights), Bot API for publishing, integration with AI APIs (OpenAI/Claude), transferring media and albums.
What I will do:
1. Userbot on Telethon - instant interception of new posts from the donor channel (event-based, without polling).
2. Cleaning: removing links and @usernames with regular expressions, a blacklist of words/phrases in a separate file (modes "clean" / "skip post" are configurable).
3. Rewrite via neural network API, prompt - in a separate text file, you can change it without editing the code.
4. Transfer photos/videos/albums with new text. Publishing modes: immediately to the channel / to a pre-moderation chat with "Publish / Reject" buttons / delayed posting.
5. Config in .env, logging, auto-reconnection. I will deploy it on your server (or suggest a cheap VPS), and provide instructions for launching.
Budget: 8,000 UAH (fixed, including deployment and 2 weeks of support after delivery).
Deadline: 4-5 working days. The basic version (monitoring + cleaning + rewriting + publishing) will be ready for demo by the 2nd-3rd day.
I am ready to discuss the details - let me know which AI you prefer (the quality of rewriting in free analogs is noticeably lower, I can show a comparison).
Budget: 4000 UAH Deadline: 4 days
Good day.
I have already had experience developing a similar user bot for tracking new posts on donor channels and forwarding them to our channel. I can modify it to meet your needs.
I will create it as a Windows application with a graphical interface. In it, you will be able to connect your Telegram account using your phone number and code. You will be able to configure channels and prompts.
Budget: 11000 UAH Deadline: 6 days
Good day.
Deadline: 4–6 working days
Cost of work: 8,000 – 11,000 UAH (depending on the chosen neural network and the need for pre-moderation integration using buttons).
We will discuss more details about how I will implement this and what is needed from you in private messages.
Budget: 3500 UAH Deadline: 2 days
Hello! I am ready to implement the project on Telethon. The main thing is that the user has access to the donor channel.
Regarding the working algorithm:
I will implement a parser and automatic filtering through RegEx expressions, integrate the GPT API for rewriting, and then send you the post for moderation in the OP or in a separate chat with convenient buttons (publish, rewrite, delete).
Execution time is 2-3 days.
Write to me! I will be happy to collaborate.
Budget: 3000 UAH Deadline: 3 days
Hello!
I work cheaper than the market rate as I am currently actively building my portfolio.
Regarding the task, I understand: a Python script/bot is needed that will track posts from a Telegram channel, clean the text of links, usernames, and unnecessary words, pass it through a neural network for rewriting, and publish it in your channel with media files.
Estimated cost: 70 USD.
Deadline: 2–4 days.
I can also add a free neural network for text rewriting to avoid spending money on paid APIs.
I will provide the exact cost and timeline after clarifying the details.
Feel free to write, I would be happy to discuss the project!
Budget: 12000 UAH Deadline: 7 days
We have experience in developing automated systems in Python using Telethon and integrating the OpenAI API for content rewriting. We implement this through an asynchronous architecture, which will ensure stable monitoring and high-quality unique post generation in real time. We are ready to start setting up the logic for filtering and processing data according to your tasks.
Budget: 2000 UAH Deadline: 3 days
Hello, I am ready to execute based on n8n. With AI, a database, media files, etc.
- Projects 6
- Rating 5.0
- Rating 1 298
Budget: 1400 UAH Deadline: 3 days
UserBot through Telethon is a standard approach for monitoring channels without administrator rights, and this is what I will be working with. I will create a Python script that will monitor posts in real-time, remove links and usernames from a blacklist, send the cleaned text to the neural network API for rewriting, attach media to the rewritten content, and publish it to the target channel—with a pre-moderation option in a closed chat before publication. Free support for two weeks after delivery is included. I am ready to start.
Budget: 3500 UAH Deadline: 3 days
Ready to create a user bot on Telethon that intercepts posts from donor channels and publishes them in your channel after AI-unique processing.
The task is clear to me in detail — I see the connection: parsing → text cleaning → rewriting through AI → sending. I have done similar chains before, so I know where they break: Telegram loves to throw FloodWait, and AI sometimes produces "watery" text — I will address both issues.
How it will work:
— The user bot catches new posts in real-time without admin rights on donors
— Cleaning from links/media according to your rules
— Rewriting via API with style control — the text remains readable, not "robotic"
— Publishing to your receiver with a delay to avoid burning the account
— Logs in the console + a simple config file with a list of donors and a prompt
I have completed all current projects, fully available — I will focus on your task and start today. During the work, I will send a test run on one channel for you to evaluate the quality of the rewriting before the final delivery.
Message me — and in 10 minutes, I will outline the plan for the first stage and a list of questions where I need your input.
Budget: 1111 UAH Deadline: 2 days
There is a ready option, write to me, I will show you.
Budget: 2000 UAH Deadline: 3 days
Hello! I have reviewed the task. I am ready to develop a reliable script (userbot on Pyrogram) that will instantly intercept posts from the donor, correctly collect media albums into a single object, and clean the text of links, usernames, and stop words. After filtering, the text will be automatically sent via API to the neural network (ChatGPT/Claude) for deep rewriting based on your prompt. I will also implement a convenient closed pre-moderation chat: the script will send ready posts there with inline buttons "Publish" and "Delete," so you can fully control the quality of the content before it goes out to the channel. Message me privately, and we can start working right away!
Budget: 1500 UAH Deadline: 1 day
Good day
I have done a similar script
I am ready to complete your work quickly and efficiently according to your specifications.
Budget: 1300 UAH Deadline: 2 days
Good day. I have already implemented a project with artificial intelligence integration. The project was "a waste collection service." You can see the feedback in my profile.
Timeline: 2-3 days
Budget: 1300
Write to me. We will discuss.
Budget: 4000 UAH Deadline: 4 days
A script is needed that will track new posts in a Telegram channel, clean them of links, usernames, and unwanted words, pass the text for rewriting through AI, and publish it along with media files. It should also provide a separate file for the prompt and a pre-moderation mode before publication.
There are several technical nuances that should be agreed upon right away: whether to preserve the formatting of messages, which AI will be used, and whether automatic publication is needed or if there should be a check in a closed chat first.
If there is already an example of a donor channel and the desired result after processing, we can discuss the details and determine the optimal implementation.
Budget: 1900 UAH Deadline: 2 days
Hello, the task is clear, I am ready to complete it for a minimal fee and reasonable deadlines.
How I will build the architecture of the tool:
Monitoring: We will write a lightweight user bot using Pyrogram. It will instantly catch new posts from the donor channel in real-time; admin rights are not needed — just being subscribed to the channel is enough.
Filtering: We will clean out foreign links, usernames, and stop words using regular expressions in Python. The lists of prohibited words will be placed in a separate text file so you can edit it.
Rewriting and Media: The script will download the media file to a temporary folder, send the cleaned text via API to ChatGPT/Claude (the prompt will be placed in the config), retrieve the unique rewrite, and publish the finished post back.
We work through Safe, I will first show a working prototype from my server. If relevant — message me privately, we will discuss the details.
Budget: 2000 UAH Deadline: 2 days
Hello) To read messages from an open Telegram channel, administrator rights are not needed. The main thing is that you are subscribed to the channel. As for AI, if you need a completely free option, but with limitations -- Google Gemini. But even if you take a paid alternative (e.g., ChatGPT API), it won't be expensive. Even if you read several channels where messages are often posted, $5 will be enough for at least a few months.
Regarding pre-moderation, I can create a very simple TG bot where you can approve the AI's actions. If you don't like the result, you can either manually make edits or send the content back to the AI for revision with a custom prompt.
As for the rest, there are no questions, I would be happy to collaborate :)
Budget: 2500 UAH Deadline: 2 days
Hello, I can implement this.
I will set up monitoring of the Telegram channel via Telethon, automatic cleaning of messages from links, usernames, and blacklisted words, after which the text will be sent to AI for quality rewriting.
I have experience in developing Telegram bots, UserBot solutions, and integration with the OpenAI API.
As a result, you will receive a ready-made tool that:
- tracks new posts almost in real-time;
- transfers photos, videos, and albums;
- rewrites text through AI with a prompt that can be easily edited in a separate file;
- publishes materials to the desired channel or, if desired, sends them to a chat for pre-moderation before publication;
- has flexible filtering and logging settings.
Please let me know if you plan to use AI through the OpenAI API, or if you need support for other models, and if you already have a ready prompt?
Budget: 3500 UAH Deadline: 3 days
Hello. I can implement it efficiently and quickly. I have worked on a similar bot, and the client was satisfied. Since I am just building my rating, I am willing to work for below market value. Message me, and we can discuss the details.
Budget: 4000 UAH Deadline: 4 days
Hello, Ruslan!
I specialize in developing Telegram bots, parsers, and API integrations. Your task is directly in my profile, and I am ready to implement it "turnkey" considering all requirements.
Here’s how I see the technical implementation:
Monitoring (UserBot): I will use Pyrogram. The script will work as a client and will instantly intercept new posts from donors (administrator rights are not needed).
Filtering and cleaning: I will write clear regular expressions (RegEx) to cut out any http/https and usernames. The "blacklist" of words will be placed in a separate file (config.json), so you can easily update it without interfering with the code.
AI rewriting: I will connect the API of the chosen neural network (ChatGPT or Claude). The prompt for rewriting will be in a regular prompt.txt — you will be able to edit it as a text document at any time.
Media files: The script will correctly process photos, videos, and media groups (albums), substituting them with already unique text.
Premoderation: I recommend making this option basic. I will set up the sending of ready posts to a private group/bot with buttons [Publish] and [Reject]. This will give you full control over quality.
I work independently, without intermediaries, so all focus will be exclusively on your project. As a bonus, I will package the script in Docker for free, so it runs stably 24/7 and is easy to deploy on the server.
Budget: 2500 UAH Deadline: 3 days
Hello! I have extensive experience in automating Telegram (UserBot) and integrating artificial intelligence (OpenAI/Claude API). I will implement your project clearly according to the specifications: based on Pyrogram / Telethon, the script will intercept posts in real-time without admin rights; it will automatically delete links, @usernames, and filter content according to your "blacklist" of words; I will integrate ChatGPT or Claude with the prompt output to a separate text file for convenient editing; I will ensure correct transfer of images/videos with the attachment of unique text and set up pre-moderation through a closed chat with buttons. The code will be asynchronous and clean, and I am fully ready to assist with setup and deployment on the server. I look forward to collaborating!
Budget: 3500 UAH Deadline: 2 days
Hello! I am ready to implement your project. I have extensive experience in developing self-bots and integrating AI. I will write a clean asynchronous script in Python (Pyrogram + OpenAI/Anthropic API/Groq API). The user bot will instantly intercept posts, clean them with regular expressions from links/usernames and stop words, and then rewrite the text using AI (the prompt will be placed in a separate file for easy editing). Media files will be uploaded and forwarded along with the new text without loss of quality. I will implement a pre-moderation mode in a separate closed chat. Let's discuss the details!
Budget: 3500 UAH Deadline: 1 day
Hello! I can easily write this bot for you, connect OpenAI for uniqueness, and it will clean all unnecessary characters. Shall we discuss the details?
Budget: 5000 UAH Deadline: 2 days
Hello. I am Vladimir, a Python developer and the founder of the engineering agency Vaysed. Your task of developing a Telegram user bot for monitoring, filtering, and AI rewriting of posts is absolutely clear to me.
Since you do not have admin rights in the donor channel, a classic bot will not work here. I will implement a script based on the modern Pyrogram library, which will operate on behalf of your Telegram account as a UserBot. This will allow for instant interception of any new messages, including media groups with photos and videos.
Immediately after interception, the text will go through a processing module that will completely remove all external links and usernames using regular expressions. I will also integrate the logic for checking against your blacklist of words at this stage. The cleaned text will be sent via API to the neural network. I strongly recommend using OpenAI or Claude, as they provide the most meaningful and high-quality rewriting. The settings, blacklist, and the prompt for the AI will be placed in a separate configuration file so that you can change the instructions at any time without needing to dive into the source code.
The script will carefully preserve all original media files and attach the already unique text to them. I will definitely implement a pre-moderation system: the finished post will first be sent to your closed group with buttons for publishing or rejecting. This will reliably protect your main channel from possible logical errors or hallucinations of the neural network.
I have significant practical experience in automating Telegram and integrating artificial intelligence into workflows. You can familiarize yourself with my engineering approach and project examples in my portfolio at the link Freelancehunt.
Please let me know if there are plans to expand the system in the future and intercept posts from multiple donor channels simultaneously, or will the source always be strictly one?
Budget: 4000 UAH Deadline: 2 days
Hello! I am implementing a script in Python (Pyrogram + asynchronous).
I will consider two critical nuances that usually cause other developers to fail:
- Media group merging: The bot will not spam and duplicate text for each image from the album, but will group them into one post.
- AI control: I will place the prompt in a separate text file so you can change the rewriting style without editing the code.
What is included in the price:
- Cleaning from links/usernames + blacklist of words (in JSON or TXT).
- Integration with ChatGPT.
- Closed chat pre-moderation with "Publish" / "Reject" buttons (strongly recommended to filter out AI hallucinations).
I have indicated the real terms and price in the form. I am ready to discuss the details and start working.
Budget: 5000 UAH Deadline: 3 days
Good evening
Write to me in private messages, we will do everything
It will parse the publications, send them to you for confirmation or text changes
After your approval, the publication will be made
Budget: 3500 UAH Deadline: 1 day
Hello, the topic of monitoring through Telegram UserBot and subsequent AI-uniqueness is an interesting case that requires a reliable stack. I have experience with similar business bots on aiogram (food ordering with a cart and payment), but your scenario is more complex due to real-time parsing and integration with neural networks. I would first clarify: what is the average number of posts per day in the donor channel, and is multimedia support (video, gif) needed in the final channel? This affects the architecture.
Budget: 3500 UAH Deadline: 2 days
Hello, Ruslan!
The task of developing a script for parsing, content cleaning, and AI-uniqueness is completely understood. I have excellent experience working with the Telegram API in Python (libraries Pyrogram / Telethon), as well as with the integration of LLM models (OpenAI / Claude API), so I am ready to implement the project "turnkey" quickly and efficiently.
I propose the most stable and flexible technical solution for your specifications:
1. Instant interception (UserBot): I will implement a background script on Pyrogram. It will work as a client account and will instantly intercept new posts from the donor channel in real-time without the need to have admin rights there.
2. Flexible cleaning pipeline: I will write an algorithm that will automatically remove all external links (http/https) and usernames through regular expressions. I will separately create a text file "blacklist.txt," where you can enter stop words — upon detection, the bot will either delete the phrase or completely ignore the post.
3. Integration with Claude / ChatGPT: The text will be automatically sent for rewriting via the official API. The instructions for the neural network will be placed in a separate file "prompt.txt" — you will be able to easily change the style and Tone of Voice at any moment without editing the code. Media files (photos/videos) will be downloaded by the bot and seamlessly stitched together with the already updated AI text.
4. Convenient pre-moderation (Quality protection): Instead of complex panels, I will implement the logic through a closed chat pre-moderation. The bot will send the final version of the post there with two inline buttons: [🚀 Publish to channel] and [🗑 Delete]. You will be able to control the quality of the content with one click directly from your mobile phone.
I will deploy the entire project on autonomous hosting Railway (24/7 operation). You can view examples of my working bots with state machines (FSM) and database integrations in my freelancer profile.
The estimated cost of development is 3,500 UAH, and the implementation period is 2 days. I am ready to start discussing the details in private messages right now!
- Projects -
- Rating -
- Rating 459
Budget: 1000 UAH Deadline: 2 days
Get a ready-made script that intercepts posts from any channel without admin rights, cleans them of links, usernames, and blacklist words, rewrites them through LLM, and publishes them in your channel along with media files.
I have built similar pipelines: Pyrogram and Telethon for UserBot monitoring, async queues for processing incoming streams, integration with OpenAI and Claude via API with custom prompts. I will place the prompt in a separate file — you can change the instructions for the AI without editing the code.
I will implement a full stack: monitoring through UserBot, filtering by regex and blacklist, rewriting through the chosen LLM, and publishing with media. Optionally — a pre-moderation queue: posts go to a closed chat, you approve them, and only then are they published in the channel.
The final cost will be clarified after discussing the details — it’s important to understand which LLM you prefer and if pre-moderation is needed.
Write in the chat — we will discuss the details and start quickly.
Budget: 1000 UAH Deadline: 1 day
Hello!
I have extensive experience in developing Telegram bots and mini apps. You can view examples of my work in my portfolio. I am ready to complete the assigned task.
I suggest discussing the details in private messages.
Budget: 700 UAH Deadline: 1 day
I have done something similar: a cross-posting bot on Telethon with filtering of links/usernames and rewriting through the OpenAI API, processing about 200 posts per day without delays. I will use Telethon + asyncio for instant interception, cleaning through regex, and for uniqueness — your API key to ChatGPT or Claude. Where to send after rewriting — directly to the channel or to a pre-moderation chat?
I can implement it today within a few hours.
I just sketched a rough implementation of your idea. Write to me, and we can discuss edits/corrections.
Budget: 700 UAH Deadline: 1 day
Good day, Ruslan!
In general, the task is clear, but to provide an accurate response regarding the deadlines and price, I would like to clarify some questions that arose after analyzing your task.
Please write in private messages — we will discuss the details and your wishes.
Budget: 1000 UAH Deadline: 1 day
Hello. To implement the assigned task, I propose to deploy a reliable, event-driven system based on Pyrogram, which will ensure stable monitoring and instant processing of data from the donor channel. Content processing will be implemented through a flexible cleaning pipeline using regular expressions and a customized blacklist, after which the text will be sent to the chosen LLM via a standardized API interface with dynamic prompt management. The system will ensure correct transfer of media files and their association with unique text, as well as provide options for pre-moderation or delayed publication to ensure content quality. I have significant experience in developing similar Telegram bots and streaming data processing systems with artificial intelligence integration, which will allow the use of ready-made, proven architectural solutions and accelerate deployment. I suggest discussing all implementation details, final budget, and timelines in private messages.
Budget: 1000 UAH Deadline: 1 day
Good day, I am ready to complete your task quickly and efficiently. I have extensive experience in creating various bots. Please write to me in private messages to discuss the details. I would be happy to help :)
Proposals are currently absent
Proposals concealed
Current freelance projects in the category Bot Development
Technical specification for a Telegram bot Goal: Create a Telegram bot that will: 1. Take posts from one channel (source). 2. Repost them to one or several other channels (receivers) on behalf of the Telegram account. 3. Support: • Text. • Up to 10 photos. • Premium emojis. 4. Replace links in posts according to specified rules. 5. Add inline buttons according to special scripts in the text. 6. Support link and button binding for each receiver separately. Working with links: • There may be links in the post text that need to be replaced. • For each receiver channel, the bot should use its own link. • Example: if the post contains the link https://site.com, then: • For Channel A replace with https://site.com/a • For Channel B replace with https://site.com/b Working with buttons: • The text may contain scripts like: [contact], [website], [order]. • The bot should: • Remove the script from the text. • Add a button with the required text and the required link. • Buttons are configured separately for each receiver channel.
Development of a Telegram bot in Python that collects data and synchronizes it with Google Sheets in real time. The system must be fault-tolerant, protected against manual input errors, and fully autonomous.
I'm looking for a developer to create a Telegram bot for our clothing store. The essence: the manager sends the bot a regular photo of the product (on a hanger, on a table) — the bot generates a ready gallery of professional shots for the product card on the website/marketplace using AI. What the bot should be able to do Receive 1–4 photos of the product in the Telegram chat. Automatically recognize the product (category, cut, male/female) — without manual description. Generate a gallery of ~6 shots: product on a model: studio front, back, dynamic pose; product shots: flat lay, close-up detail, ghost mannequin; lifestyle shot. Consistent model — the same person in all shots of the gallery and between galleries (brand face). Several shooting styles to choose from (for example: streetwear, casual, sport, old money). Output format: JPG 4:5, files with numbering (-01, -02…) — ready for upload. The ability to regenerate a single shot or change the style without regenerating the entire gallery. Access only for our team (allowlist), daily limits per user. Accounting for AI API costs: show the price before generation, keep statistics. Technical expectations Image generation: Gemini (Nano Banana) / DALL·E / Flux or similar — please suggest an option with justification of quality and cost per shot. The bot must operate 24/7 on VPS (auto-restart, turnkey deployment). Secrets via .env, code delivered to us (repository). What we will provide Product photos for testing, wishes regarding brand styling. What I expect in the response Cost and timeline estimate. Approximate cost of one gallery. From and To
General information: There is a Telegram bot written in Python (aiogram v3, aiohttp, MySQL, Redis). This is a service for interaction between clients and performers (profiles, projects, etc.). Required skills: - Confident experience with aiogram v3 (not v2!), asyncio, aiohttp; - Knowledge of Telegram Bot API (webhooks); - Experience with MySQL, Redis; - Ability to understand someone else's code; - Communication skills, responsibility. I need to fix a bug in the current version of the bot directly on the server. The problem is as follows: The chats (Nooks) are not functioning properly; there should be a cleaner that works according to an algorithm, but right now it is working with bugs and not cleaning on schedule. - A chat between the client is needed for discussing work matters with the performer. - Chats (nooks are already created, they need to be cleaned and queued. - The user bot creates chats (pair nooks, which we already have) and puts them in the queue; if a deal is made in the chat, the interlocutors are present (one chat for the performer, another chat for the client); if the chat is closed or there was no deal made and users did not write there for 7 days, the bot removes clients or performers from there and puts this chat (nook) back in the queue. - The client can switch to a chat with any performer who responded to the order. - The client and performer are in two parallel chats, so there is no possibility to see the direct account of the interlocutor and no possibility to write to them directly. * We do not change the operation of the chats and everything else. The main thing is that the fix does not lead to other problems.
Hello, I am using 2 different Telegram bots for order confirmation from the online store. The first one is tgmall because of its convenient mini-app functionality, and the second is sendpulse where I use most of the communication with clients simply due to the menu with scenarios. The problem is that sendpulse is very glitchy, and tgmall either does not provide the necessary functionality for scenarios or I do not know how to implement them.