Ai llm to automate socials?

esoterikizym

Regular Member
Joined
May 15, 2017
Messages
376
Reaction score
89
Hey guys, has anybody any recommendations for an LLM maybe a local version that we can find to Hermes or openclaw that would actually just automate our social media? Using GPT, and even Grok they always say they can’t issue a like on Instagram or a follow or anything good like that, I’m wondering if anybody has been able to successfully do it and with what LLM?
 
Hey guys, has anybody any recommendations for an LLM maybe a local version that we can find to Hermes or openclaw that would actually just automate our social media? Using GPT, and even Grok they always say they can’t issue a like on Instagram or a follow or anything good like that, I’m wondering if anybody has been able to successfully do it and with what LLM?
Did you try Gemini 3.5? Because gemini for me can pass even captchas thru Cursor + MCP Browser
 
An LLM alon won't handle likes or follows. You still need an automation layer such as (Playwright, Selenium, or appium) to interact withthe app, while the LLM decides what actions to take. That's the setup most people are using successfully.
 
So gemini + hermes?
Try it yes. Because other LLMs constantly refuse to do things, but so far, gemini carries out tasks without question. As I mentioned it passes captcha, making registartion some accounts if you ask him about it. I didnt use Hermes just Cursor, but I think if you connect gemini to hermes it would be same.
 
If you are from US check the google labs, they have some great work in progress apps for free. If you are not in US just use vpn. There was one tool where you enter your website and socials and it gives you relevant content, you can also automate it but it is still in beta.
 
An LLM alon won't handle likes or follows. You still need an automation layer such as (Playwright, Selenium, or appium) to interact withthe app, while the LLM decides what actions to take. That's the setup most people are using successfully.
Have you had success with this? Also don't you need to learn python for using Selenium?
 
Hermes and openclaw aren't the same kind of thing. Hermes is a model, so yes, it'll stop refusing. It still can't issue a like. The refusal isn't a policy switch you can jailbreak around, and running a local model doesn't add hands, it just removes the part that politely tells you so.

Whatever actually clicks is a separate program: a browser driver like Playwright or Selenium on a logged-in session, or something talking to the mobile app endpoints. Instagram publishes no API for likes and follows, so that second route means impersonating the phone client, and that's what gets accounts restricted. The model picks targets and writes the words; it never touches the account.

We build on Telegram, where user-account automation runs on MTProto with documented flood waits and per-chat limits, and pacing still burned us. A retry loop left at the library default of five attempts hammered a refused proxy six times a minute and pushed a worker into repeated out-of-memory restarts. Two attempts with a five-minute cooldown fixed it.

Instagram publishes no limits at all. Run one account, slow, and watch what happens before you scale.

Best,
Floqal
 
Back
Top