Text Diffusion Models
Last updated 2026-07-31What's new
- A new open-source tool called "last 30 days" (a GitHub repository with 55,000 stars) helps Claude code (a type of AI assistant) find real user opinions from social media platforms like Reddit, Twitter, and YouTube.
- Instead of just showing you popular articles like a regular web search, it digs deeper to find what people are actually saying in comments and posts.
- It's easy to set up, with most platforms not requiring any extra payment or API keys (a special code that lets different software talk to each other).
- You can use it by simply typing a command and a topic, and it will search all the relevant platforms at once, giving you a detailed report.
- You can manage AI agents (computer programs that do tasks for you) to boost productivity, using tools like Devon AI (a software platform for managing AI agents).
- Set up automations (repeated tasks done by AI agents) and create a software factory (a system that generates software automatically) to work more efficiently.
- Keep your production keys (passwords for important systems) secure and separate from your AI agents to prevent mistakes or security issues.
- You can control AI agents from your phone, allowing you to work remotely and manage tasks on the go.
- AI tools (computer programs that use artificial intelligence) often struggle with large amounts of information, as performance can degrade after using just 25% of their context window (the amount of data they can process at once).
- Documentation (instruction manuals) for AI tools is often written for humans, not AI, making it difficult for AI to understand and use effectively without additional context engines (tools that help AI understand information better).
- In the future, AI tools may focus on creating a "fluency mode" (a smooth, easy-to-use experience) rather than a "friction mode" (making it hard for users to switch to a different tool), with skills (specialized abilities) playing a key role in this shift.
- When evaluating AI platforms, users often consider factors like security, data governance (how data is managed and protected), and integration (how well it works with other systems) capabilities.
- Claude Code (a tool for building AI-powered automations) lets you work with local files and online services like Gmail, Slack, or a CRM (customer relationship management system), making it more powerful than Claude Chat (a simple AI chatbot).
- Claude Code uses the same AI models (like Opus, Sonnet, or Haiku) as Claude Chat, but adds extra features for working with files and online services.
- Claude Code is like an AI harness (a tool that helps you use AI models), which sits between the AI model (the engine) and you (the driver), helping you build automations and agents (AI systems that can do tasks for you).
- The instructor, Nate, uses Claude Code to build and manage multiple businesses, showing how one person can do the work of a team with AI.
- Stanford's STORM (Structured Thinking and Research Method) research method uses five different perspectives (practitioner, academic, skeptic, economist, historian) to create more organized and reliable reports, and it's now available as a free skill for Claude (an AI assistant).
- The STORM skill generates an HTML briefing with verified information, ranking key findings by reliability and identifying assumptions and missing perspectives, making it more actionable and tailored to your needs.
- Compared to Claude's native deep research feature (which uses many agents to gather information), STORM is faster, cheaper, and provides better evidence quality, source diversity, and risk control.
- The STORM skill works by chaining together four prompts that spin up the five perspectives, create a contradiction map, and verify the facts, resulting in a consistently formatted HTML report.
- Learning to create and manage AI agents (AI workers with specific tasks, tools, and rules) is valuable, as businesses will need help organizing multiple AI tools into working systems.
- Marketers who understand distribution (finding where people's attention is and turning that into trust and sales) will be in demand, as creating products is easier than making people care about them.
- Start small when learning to build AI agents, like creating a daily briefing agent that summarizes your calendar and notes, to understand how to set rules and measure success.
- To learn distribution, map out where a specific group's attention goes, like newsletters, creators, and forums they follow, to understand how to reach them effectively.
- Nvidia's AI labs are working on making diffusion models (AI that generates images or videos by gradually reducing noise) faster and more practical for developers and businesses, focusing on speed, maturity, and scalability.
- They're using techniques like quantization (simplifying the AI's data to make it run faster), caching (saving computed data to reuse later), and distillation (simplifying the AI's structure) to optimize these models.
- For quantization, they've released open-source tools and pre-quantized checkpoints (pre-simplified AI models) on Hugging Face, a platform for sharing AI models, to help the community adopt these techniques.
- They're also exploring attention FP4 (a technique to make the AI focus on important data points) and other research to further improve diffusion models.
- GLM 5.2, a new open-source AI model (software anyone can use and modify), is coming soon with a massive 1 million token context window (ability to process and remember large amounts of text), but no vision capabilities at launch.
- OpenAI, the company behind ChatGPT, introduced a new codeex (AI tool for coding) rate limit reset feature and a generous referral program, possibly reacting to competition from other AI companies.
- Google released Fusion Gemma, an experimental open model (AI software under the Apache 2.0 license) that can generate text up to four times faster than other models.
- Dcope (a service for managing access and permissions) can help secure AI agents (automated software) and servers by handling authentication (verifying identities) and access control (managing permissions) for you.
- An AI agent (software that uses tools to achieve goals) is a key concept, and AWS services can help you build and use them without needing deep technical knowledge.
- The exam focuses on practical AI applications, not complex coding or math, with a pass mark of 700 out of 1000, and no penalty for guessing.
- Key topics include generative AI (28%), AI fundamentals (20%), and responsible AI (14%), with study time allocated based on these weights.
- The exam tests your ability to choose the right AWS service for a given scenario, not just memorize service names, with a focus on understanding AI concepts and their applications.
Key points
What it is
- Text diffusion models generate text by starting with random noise and refining it in multiple passes, unlike standard models that produce one word at a time.
- They allow bidirectional reasoning and self-correction, fixing errors as they refine the entire sequence simultaneously.
- These models use dynamic computation, adapting effort automatically based on the complexity of the prompt.
How to use it
- Define your context or prompt and initialize a fixed window of tokens filled with random noise.
- The model denoises this window over multiple steps, correcting the entire sequence at once.
- You can perform fast in-place editing by cutting out part of the text and regenerating only that portion using surrounding context.
Watch out for
- Diffusion models may not follow prompts as closely as standard models, offering a more exploratory feel.
- Leverage the model's ability to self-correct and apply reinforcement learning by changing the training algorithm.
- Use dynamic computation for speed, as the model can spend fewer refinement steps on simple prompts and more on complex ones.
Tools named
- Gemma text encoder (a tool for encoding text), Gemini diffusion (a text diffusion model)
Lesson 1: What is Text Diffusion Models and why it matters
Text diffusion models generate text by starting with random noise and refining it in multiple passes, unlike standard autoregressive models (which produce one word at a time). This process allows bidirectional reasoning and self-correction — the model can look at all the tokens simultaneously and fix errors as it refines, rather than committing to each word sequentially.
A key advantage is dynamic computation: the model can spend fewer passes on easy prompts and more on hard ones, adapting its effort automatically. This also means fewer memory transfers — generating 256 tokens with 24 refinement passes is 10 times faster than generating them one-by-one if the system is memory-bound. For AI developers, this low latency unlocks faster responses for real-time applications.
These models also support fast in-place editing — you can change part of the generated text without regenerating everything. While most text diffusion today works in discrete space (directly on tokens), combining them with autoregressive models is possible, and reinforcement learning can be applied by changing the training algorithm. For AI engineers, the practical impact is speed and flexibility: easier problems get solved quickly, harder ones get more compute automatically, all while enabling new applications like on-the-fly webpage generation.
Sources
- 2026-06-04 — Text Diffusion Brendon Dillon, Google DeepMind
- 2026-06-02 — This is the EASIEST way to setup Hermes Agent
- 2026-05-09 — Why TTS Models Now Look Like LLMs Samuel Humeau, Mistral
- 2026-01-03 — The AI Choice You’ll Regret in 2026
- 2026-06-01 — Grok's Low Censorship AI Video Model Shouldn't Exist Yet (Most Dangerous AI News)
- 2026-03-08 — Is AI Really Intelligent or Just Fancy Autocomplete 2026
- 2026-05-18 — Your Whole Team Uses AI. Why Hasn't the Work Changed
- 2026-05-27 — You Set Up Claude Cowork in the Wrong Order
Lesson 2: How to use Text Diffusion Models: step-by-step
Text diffusion models generate text differently than the autoregressive models (models that predict one word at a time) you may know. Instead of producing one token (a word or piece of a word) and feeding it back in, a text diffusion model starts with a full sequence of tokens, like a clean sentence, and gradually adds random noise to corrupt it. Then the model learns to reverse that process, refining the noisy sequence back into a coherent response. Brendan Dillon from Google DeepMind explains that this iterative refinement lets the model generate, say, 256 tokens in 24 passes, which can be ten times faster than autoregressive models when memory is the bottleneck.
To use a text diffusion model step by step, you begin by defining your context or prompt. The model then initializes a fixed window of tokens—often filled with random noise—that matches your desired output length. It denoises this window over multiple steps, correcting the entire sequence at once. This enables bidirectional reasoning (looking at all tokens together) and self-correction, which autoregressive models lack. You can also perform fast in-place editing: like filling in a masked section of an image, you can cut out part of a text and prompt the model to regenerate only that portion using surrounding context.
For example, in a tool like Gemini diffusion, you supply a prompt, and the model determines how many refinement passes to use—simpler prompts get fewer passes, harder ones get more, saving computation. You'll need a compatible setup, such as downloading a Gemma text encoder and the diffusion model itself. Once configured, you select the model, input your text, and let the diffusion process refine it iteratively until you get the final output. The result is text that benefits from creative generation and adaptive speed.
Lesson 3: Best practices and pitfalls
When using text diffusion models (models that generate text by gradually refining a noisy starting sequence), keep these practical points in mind. A key advantage is fewer memory transfers; a diffusion model might refine 256 tokens in 24 passes, while an autoregressive model (generating one token at a time) would require 256 passes. If your hardware is memory-bound, this can make the diffusion model up to ten times faster in latency.
A common pitfall is expecting diffusion models to follow prompts as closely as autoregressive models; they behave more like traditional image diffusion, offering an exploratory feel in latent space (the compressed representation the model works in). This trade-off means you may need to prompt more loosely for creative results.
Another best practice is leveraging the model's ability to self-correct. Autoregressive models cannot fix an early mistake without backtracking — one example showed a model incorrectly stating “36 + 3 is 42” and continuing to build reasoning on that error. Text diffusion models avoid this flaw, allowing bidirectional reasoning and editing. You can also apply reinforcement learning (RL) to these models by changing the training algorithm.
For speed, use the dynamic computation property: the model can spend fewer refinement steps on simple prompts and more on complex ones (e.g., easier Python problems get faster responses). Finally, while you can combine diffusion with autoregressive components, understand the latency-throughput trade-off — slower generation but better handling of reasoning tasks.