Helping founders and teams use AI where it actually creates value. Roadmaps, workflows, automations, agents.

Joined March 2018
6 Photos and videos
Pinned Tweet
Revolution for your inbox in the age of the attention economy and agentic web
Spam is free. Your attention isn't. Turn your inbox into a paid channel. For humans and AI agents. Create your free account and get money instead of spam Moltgate.com
26
AILEPHANT retweeted
And 14k members in the group! Come join us
1
1
32
AILEPHANT retweeted
It seems that the answer is clear, people want to know where AI and agents can bring results.
1
1
1
31
AILEPHANT retweeted
Tested the Gstack from Garry Tan. Verdict is some good some less so. I like the questionning of /plan-ceo-review /plan-eng-review Maybe /qa for the testing, but testing its own code go not very far. The usefulness of the rest vs vanilla coding agent is debatable.
1
56
AILEPHANT retweeted
Top Free WordPress Plugins to Skyrocket Reach, Quality, and Speed for AI Content Generation: - Jetpack Social - Broken Link Checker - Internal Link Juicer - Easy Table of Contents
1
4
5
302
11 Sep 2025
AI content does generate traffic. You just have to scale it up!
AI content DOES rank! Here is a 1 year GA of a website launched 1 year ago in education. New domain, DA: 0 Built a basic WP site with usual plugins and 2024 theme: 2 hours Built a few easy backlinks, social profiles: 2 hours. Posts: initial batch 1/day. Got traffic. 👇
34
AILEPHANT retweeted
We just reached the 5,000 members mark in the AI agents group on LI! 🎉 Come join us!
1
2
49
AILEPHANT retweeted
Launching WP AI Writer on ProductHunt! If you use WordPress, you actually need WP AI Writer, now... Like now now! There is a coupon for a 1-month free trial, so hurry as it is limited for the 50 first subscribers. Make sure to leave an upvote! producthunt.com/posts/wp-ai-…
7
8
206
AILEPHANT retweeted
I have a problem: I have tried to register to X @Premium with 5 different cards which are all refused! I can't get any support because I am not a @Premium subscriber.

ALT Oppenheimer Paradoxical GIF

2
6
7
259
31 Jan 2025
Preparing an interesting new experiment.
1
1
18
AILEPHANT retweeted
29 Aug 2024
Buckle up!
First wave of AI revolution: ChatGPT @ChatGPTapp Second wave: Cursor @cursor_ai
4
4
232
AILEPHANT retweeted
23 Aug 2024
AI is barely beginning. The floodgates of AI Agents are opening now. $NVDA
🚀 My use of LLMs is skyrocketing: new record of 6 million tokens yesterday! Come share and learn how to use LLMs with us in the AI Agents group: linkedin.com/groups/6672014
2
3
321
AILEPHANT retweeted
Alright, off for 5 days but starting the week back strong with 1.7 million tokens today.

ALT The Rock Comedy GIF by Baywatch Movie

1
2
33
AILEPHANT retweeted
Alright, first day using more than 1M tokens! 🚀 New goal: make it a daily habit. (I will report on this.)
1
3
6
2,010
AILEPHANT retweeted
When you work with AI agents, you realize that if GPT5 is as much of a step up compared to GPT4 as GPT4 was to GPT3, AGI or not AGI, it will break the world of tech… at least. Starting to understand why the US gov is stepping in OpenAI.
1
4
2
288
AILEPHANT retweeted
Exciting!
23 Jul 2024
💥BOOM 💥 Llama 3.1 is out 💥 405B, 70B, 8B versions. Main takeaways: 1. 405B performance is on par with the best closed models. 2. Open/free weights and code, with a license that enables fine-tuning, distillation into other models, and deployment anywhere. 3. 128k context length, multi-lingual abilities, good code generation performance, complex reasoning abilities, tool use. 4. Llama Stack API for easy integration. 5. Ecosystem with over 25 partners, including AWS, NVIDIA, Databricks, Groq, Dell, Azure, and Google Cloud. Blog post: ai.meta.com/blog/meta-llama-… Llama home: llama.meta.com/
2
1
53
AILEPHANT retweeted
Beautiful choice of open-source LLMs available on the HuggingChat app, including Meta’s powerful new Llama 3 70B instruct! Bien joué les gars! @huggingface @AIatMeta @Meta
1
2
382
AILEPHANT retweeted
18 Apr 2024
Multi-agent collaboration has emerged as a key AI agentic design pattern. Given a complex task like writing software, a multi-agent approach would break down the task into subtasks to be executed by different roles -- such as a software engineer, product manager, designer, QA (quality assurance) engineer, and so on -- and have different agents accomplish different subtasks. Different agents might be built by prompting one LLM (or, if you prefer, different LLMs) to carry out different tasks. For example, to build a software engineer agent, we might prompt the LLM: "You are an expert in writing clear, efficient code. Write code to perform the task …". It might seem counterintuitive that, although we are making multiple calls to the same LLM, we apply the programming abstraction of using multiple agents. I'd like to offer a few reasons: - It works! Many teams are getting good results with this method, and there's nothing like results! Further, ablation studies (for example, in the AutoGen paper cited below) show that multiple agents give superior performance to a single agent. - Even though some LLMs today can accept very long input contexts (for instance, Gemini 1.5 Pro accepts 1 million tokens), their ability to truly understand long, complex inputs is mixed. An agentic workflow in which the LLM is prompted to focus on one thing at a time can give better performance. By telling it when it should play software engineer, we can also specify what is important in that subtask: For example, the prompt above emphasized clear, efficient code as opposed to, say, scalable and highly secure code. By decomposing the overall task into subtasks, we can optimize the subtasks better. - Perhaps most important, the multi-agent design pattern gives us, as developers, a framework for breaking down complex tasks into subtasks. When writing code to run on a single CPU, we often break our program up into different processes or threads. This is a useful abstraction that lets us decompose a task -- like implementing a web browser -- into subtasks that are easier to code. I find thinking through multi-agents roles to be a useful abstraction. In many companies, managers routinely decide what roles to hire, and then how to split complex projects -- like writing a large piece of software or preparing a research report -- into smaller tasks to assign to employees with different specialties. Using multiple agents is analogous. Each agent implements its own workflow, has its own memory (itself a rapidly evolving area in agentic technologies -- how can an agent remember enough of its past interactions to perform better on upcoming ones?), and may ask other agents for help. Agents themselves can also engage in Planning and Tool Use. This results in a cacophony of LLM calls and message passing between agents that can result in very complex workflows. While managing people is hard, it's a sufficiently familiar idea that it gives us a mental framework for how to "hire" and assign tasks to our AI agents. Fortunately, the damage from mismanaging an AI agent is much lower than that from mismanaging humans! Emerging frameworks like AutoGen, Crew AI, and LangGraph, provide rich ways to build multi-agent solutions to problems. If you're interested in playing with a fun multi-agent system, also check out ChatDev, an open source implementation of a set of agents that run a virtual software company. I encourage you to check out their github repo and perhaps even clone the repo and run the system yourself. While it may not always produce what you want, you might be amazed at how well it does! Like the design pattern of Planning, I find the output quality of multi-agent collaboration hard to predict. The more mature patterns of Reflection and Tool use are more reliable. I hope you enjoy playing with these agentic design patterns and that they produce amazing results for you! If you're interested in learning more, I recommend: - Communicative Agents for Software Development, Qian et al. (2023) (the ChatDev paper) - AutoGen: Enabling Next-Gen LLM Applications via Multi-Agent Conversation, Wu et al. (2023) - MetaGPT: Meta Programming for A Multi-Agent Collaborative Framework, Hong et al. (2023) [Original text: deeplearning.ai/the-batch/is… ]

90
503
2,379
414,884
20 Apr 2024
Tried, and it didn’t disappoint!
19 Apr 2024
Replying to @AIatMeta
First thing’s first, get access to the models on the website ➡️ go.fb.me/79pcwh
15