The post Someone Built a Working AI Chatbot Inside ‘Minecraft’—Here’s How appeared on BitcoinEthereumNews.com. In brief A Minecraft builder encoded a 5-million-parameter language model entirely via the game’s redstone logic, spanning hundreds of millions of blocks. The system works (in principle) but is excruciatingly slow; responses can take hours even with speed boosts. It’s a proof of concept, a technical art piece, and a reminder that computation can live in odd places—what matters is structure, not just substrate. Over the weekend, a Minecraft maestro performed a striking feat: embedding a working language-model inference engine inside the immensely popular sandbox game. The catch? All of the “wiring” was done with Minecraft’s redstone system—no command blocks, no mods (beyond rendering assistance), just circuit logic built from in-game materials. The result is quirky, painfully slow, but fascinating: a GPT-style chatbot inside a block world, built from digital redstone and analog logic. To understand the stunt, you need to know what redstone is. In Minecraft, redstone is the game’s analog to wiring and electronic components: power sources, repeaters, comparators, logic gates, signal delays—all built with blocks. Redstone circuits emulate digital behavior (on/off, logic operations) inside the game world. Players long ago built calculators, memory units, and even CPUs inside Minecraft using redstone—and now they’re pushing it into AI territory. Sammyuri, the person who build the GPT hack, even built a recursive version of Minecraft within Minecraft using redstone. In this project, the creator first trained a small language model outside of the game (in Python) using a dataset called TinyChat. That model has roughly 5,087,280 parameters, an embedding dimension of 240, a vocabulary of about 1,920 tokens, six layers, and a context window of 64 tokens. Most weights are quantized to 8 bits, though embedding and LayerNorm weights use higher precision. The redstone build itself spans roughly 1,020 × 260 × 1,656 blocks (≈ 439 million blocks in… The post Someone Built a Working AI Chatbot Inside ‘Minecraft’—Here’s How appeared on BitcoinEthereumNews.com. In brief A Minecraft builder encoded a 5-million-parameter language model entirely via the game’s redstone logic, spanning hundreds of millions of blocks. The system works (in principle) but is excruciatingly slow; responses can take hours even with speed boosts. It’s a proof of concept, a technical art piece, and a reminder that computation can live in odd places—what matters is structure, not just substrate. Over the weekend, a Minecraft maestro performed a striking feat: embedding a working language-model inference engine inside the immensely popular sandbox game. The catch? All of the “wiring” was done with Minecraft’s redstone system—no command blocks, no mods (beyond rendering assistance), just circuit logic built from in-game materials. The result is quirky, painfully slow, but fascinating: a GPT-style chatbot inside a block world, built from digital redstone and analog logic. To understand the stunt, you need to know what redstone is. In Minecraft, redstone is the game’s analog to wiring and electronic components: power sources, repeaters, comparators, logic gates, signal delays—all built with blocks. Redstone circuits emulate digital behavior (on/off, logic operations) inside the game world. Players long ago built calculators, memory units, and even CPUs inside Minecraft using redstone—and now they’re pushing it into AI territory. Sammyuri, the person who build the GPT hack, even built a recursive version of Minecraft within Minecraft using redstone. In this project, the creator first trained a small language model outside of the game (in Python) using a dataset called TinyChat. That model has roughly 5,087,280 parameters, an embedding dimension of 240, a vocabulary of about 1,920 tokens, six layers, and a context window of 64 tokens. Most weights are quantized to 8 bits, though embedding and LayerNorm weights use higher precision. The redstone build itself spans roughly 1,020 × 260 × 1,656 blocks (≈ 439 million blocks in…

Someone Built a Working AI Chatbot Inside ‘Minecraft’—Here’s How

For feedback or concerns regarding this content, please contact us at crypto.news@mexc.com

In brief

  • A Minecraft builder encoded a 5-million-parameter language model entirely via the game’s redstone logic, spanning hundreds of millions of blocks.
  • The system works (in principle) but is excruciatingly slow; responses can take hours even with speed boosts.
  • It’s a proof of concept, a technical art piece, and a reminder that computation can live in odd places—what matters is structure, not just substrate.

Over the weekend, a Minecraft maestro performed a striking feat: embedding a working language-model inference engine inside the immensely popular sandbox game. The catch? All of the “wiring” was done with Minecraft’s redstone system—no command blocks, no mods (beyond rendering assistance), just circuit logic built from in-game materials.

The result is quirky, painfully slow, but fascinating: a GPT-style chatbot inside a block world, built from digital redstone and analog logic.

To understand the stunt, you need to know what redstone is. In Minecraft, redstone is the game’s analog to wiring and electronic components: power sources, repeaters, comparators, logic gates, signal delays—all built with blocks. Redstone circuits emulate digital behavior (on/off, logic operations) inside the game world.

Players long ago built calculators, memory units, and even CPUs inside Minecraft using redstone—and now they’re pushing it into AI territory. Sammyuri, the person who build the GPT hack, even built a recursive version of Minecraft within Minecraft using redstone.

In this project, the creator first trained a small language model outside of the game (in Python) using a dataset called TinyChat. That model has roughly 5,087,280 parameters, an embedding dimension of 240, a vocabulary of about 1,920 tokens, six layers, and a context window of 64 tokens. Most weights are quantized to 8 bits, though embedding and LayerNorm weights use higher precision. The redstone build itself spans roughly 1,020 × 260 × 1,656 blocks (≈ 439 million blocks in total). To film the scale, the creator used the Distant Horizons mod, which allows distant structures to be visualized in a giant world.

When you input a prompt (via in-game interface), the redstone circuits carry out the inference step by step, embedding lookup, feedforward passes, matrix multiplications, and softmax approximations. According to a video demonstration, the elaborate redstone build took months to assemble.

But the system is glacial. Even with an artificially boosted tick rate (~40,000× faster than normal, via MCHPRS), the response time is on the order of a couple of hours. At standard Minecraft speed, some estimate it would take over nine years to generate an answer.

Still, the point of the project isn’t utility—it’s demonstration. At its heart, this build is a playful proof that neural inference can be recast into almost any logical substrate. It reminds us how much abstraction our software and hardware stacks hide: that architecture, medium, and speed are separate dimensions. In other words, this is a technical art piece, a conversation starter: what counts is computation, not necessarily where it runs.

Does this matter? Yes, it does

Obviously, this isn’t practical, but it’s cool because it demonstrates something profound: that logic and neural-style computation can be mapped into bizarre substrates—here, virtual redstone circuits. It’s a playful proof of the universality of computation, an artistic and educational showpiece, and a challenge to our assumptions about how and where “intelligence” can run.

It forces us to ask: what really matters in a model—architecture, medium, speed—and what other strange substrates might one try (optics, DNA, mechanical systems)?

Across the web, the build has ignited debates. Tom’s Hardware ran a piece breaking down the block count, the redstone logic, and the performance tradeoffs. On Hacker News, commenters marveled at the engineering but also pressed on limitations: “At normal redstone tick rate… it would take just over 9 years for a response.” Meanwhile, in the Minecraft subreddit, fans and skeptics alike debated how much of the achievement is spectacle vs. technical depth.

Some observers suggest the project borders on meme more than research. Indeed, the real training happened externally; Minecraft only hosts inference logic. It’s a showpiece more than a practical model. But that’s precisely what gives it charm—and purpose.

GG Newsletter

Get the latest web3 gaming news, hear directly from gaming studios and influencers covering the space, and receive power-ups from our partners.

Source: https://decrypt.co/341930/someone-built-working-ai-chatbot-inside-minecraft

Market Opportunity
null Logo
null Price(null)
--
----
USD
null (null) Live Price Chart
Disclaimer: The articles reposted on this site are sourced from public platforms and are provided for informational purposes only. They do not necessarily reflect the views of MEXC. All rights remain with the original authors. If you believe any content infringes on third-party rights, please contact crypto.news@mexc.com for removal. MEXC makes no guarantees regarding the accuracy, completeness, or timeliness of the content and is not responsible for any actions taken based on the information provided. The content does not constitute financial, legal, or other professional advice, nor should it be considered a recommendation or endorsement by MEXC.

You May Also Like

How to earn from cloud mining: IeByte’s upgraded auto-cloud mining platform unlocks genuine passive earnings

How to earn from cloud mining: IeByte’s upgraded auto-cloud mining platform unlocks genuine passive earnings

The post How to earn from cloud mining: IeByte’s upgraded auto-cloud mining platform unlocks genuine passive earnings appeared on BitcoinEthereumNews.com. contributor Posted: September 17, 2025 As digital assets continue to reshape global finance, cloud mining has become one of the most effective ways for investors to generate stable passive income. Addressing the growing demand for simplicity, security, and profitability, IeByte has officially upgraded its fully automated cloud mining platform, empowering both beginners and experienced investors to earn Bitcoin, Dogecoin, and other mainstream cryptocurrencies without the need for hardware or technical expertise. Why cloud mining in 2025? Traditional crypto mining requires expensive hardware, high electricity costs, and constant maintenance. In 2025, with blockchain networks becoming more competitive, these barriers have grown even higher. Cloud mining solves this by allowing users to lease professional mining power remotely, eliminating the upfront costs and complexity. IeByte stands at the forefront of this transformation, offering investors a transparent and seamless path to daily earnings. IeByte’s upgraded auto-cloud mining platform With its latest upgrade, IeByte introduces: Full Automation: Mining contracts can be activated in just one click, with all processes handled by IeByte’s servers. Enhanced Security: Bank-grade encryption, cold wallets, and real-time monitoring protect every transaction. Scalable Options: From starter packages to high-level investment contracts, investors can choose the plan that matches their goals. Global Reach: Already trusted by users in over 100 countries. Mining contracts for 2025 IeByte offers a wide range of contracts tailored for every investor level. From entry-level plans with daily returns to premium high-yield packages, the platform ensures maximum accessibility. Contract Type Duration Price Daily Reward Total Earnings (Principal + Profit) Starter Contract 1 Day $200 $6 $200 + $6 + $10 bonus Bronze Basic Contract 2 Days $500 $13.5 $500 + $27 Bronze Basic Contract 3 Days $1,200 $36 $1,200 + $108 Silver Advanced Contract 1 Day $5,000 $175 $5,000 + $175 Silver Advanced Contract 2 Days $8,000 $320 $8,000 + $640 Silver…
Share
BitcoinEthereumNews2025/09/17 23:48
BetFury is at SBC Summit Lisbon 2025: Affiliate Growth in Focus

BetFury is at SBC Summit Lisbon 2025: Affiliate Growth in Focus

The post BetFury is at SBC Summit Lisbon 2025: Affiliate Growth in Focus appeared on BitcoinEthereumNews.com. Press Releases are sponsored content and not a part of Finbold’s editorial content. For a full disclaimer, please . Crypto assets/products can be highly risky. Never invest unless you’re prepared to lose all the money you invest. Curacao, Curacao, September 17th, 2025, Chainwire BetFury steps onto the stage of SBC Summit Lisbon 2025 — one of the key gatherings in the iGaming calendar. From 16 to 18 September, the platform showcases its brand strength, deepens affiliate connections, and outlines its plans for global expansion. BetFury continues to play a role in the evolving crypto and iGaming partnership landscape. BetFury’s Participation at SBC Summit The SBC Summit gathers over 25,000 delegates, including 6,000+ affiliates — the largest concentration of affiliate professionals in iGaming. For BetFury, this isn’t just visibility, it’s a strategic chance to present its Affiliate Program to the right audience. Face-to-face meetings, dedicated networking zones, and affiliate-focused sessions make Lisbon the ideal ground to build new partnerships and strengthen existing ones. BetFury Meets Affiliate Leaders at its Massive Stand BetFury arrives at the summit with a massive stand placed right in the center of the Affiliate zone. Designed as a true meeting hub, the stand combines large LED screens, a sleek interior, and the best coffee at the event — but its core mission goes far beyond style. Here, BetFury’s team welcomes partners and affiliates to discuss tailored collaborations, explore growth opportunities across multiple GEOs, and expand its global Affiliate Program. To make the experience even more engaging, the stand also hosts: Affiliate Lottery — a branded drum filled with exclusive offers and personalized deals for affiliates. Merch Kits — premium giveaways to boost brand recognition and leave visitors with a lasting conference memory. Besides, at SBC Summit Lisbon, attendees have a chance to meet the BetFury team along…
Share
BitcoinEthereumNews2025/09/18 01:20
Privacy is ‘Constant Battle’ Between Blockchain Stakeholders and State

Privacy is ‘Constant Battle’ Between Blockchain Stakeholders and State

The post Privacy is ‘Constant Battle’ Between Blockchain Stakeholders and State appeared on BitcoinEthereumNews.com. Blockchain industry participants and regulators continue wrangling over privacy rights as the European Union’s sweeping Anti-Money Laundering (AML) rules look set to ban privacy-preserving tokens and anonymous crypto accounts starting in 2027. Credit institutions, financial institutions and crypto asset service providers (CASPs) will be prohibited from maintaining anonymous accounts or handling privacy-preserving cryptocurrencies under the EU’s new Anti-Money Laundering Regulation (AMLR) that will go into effect in 2027, Cointelegraph reported in May. Maintaining the right to access privacy-preserving coins like Monero (XMR) has been a “constant battle” between blockchain industry stakeholders and regulators, according to Anja Blaj, an independent legal consultant and policy expert at the European Crypto Initiative. “Once you think of how the states want to play out their policies, they want to establish control. They want to understand who the parties are that transact among themselves,” said Blaj, speaking during Cointelegraph’s daily live X spaces show on Sept. 3. “[The state] wants to understand that to be able to prevent whatever crime and scamming is happening, and we want to enforce the policies that we create as a society.” Her comments came as the EU ramped up its regulatory oversight of the crypto industry, building on the bloc’s Markets in Crypto-Assets Regulation (MiCA). Related: Swiss banks complete first blockchain-based legally binding payment Room for negotiation remains While the AML framework is final, regulatory experts still see potential for negotiation until it rolls out in 2027. Policymaking is a “continuous conversation,” meaning that “nothing is set in stone, even if the regulation is already out,” said Blaj. “There are still ways to either talk to the regulators, see how it’s going to play out, how it’s going to be enforced.” While there’s always room for negotiations with policymakers, the regulation concerning privacy-preserving cryptocurrencies and accounts is becoming “more…
Share
BitcoinEthereumNews2025/09/18 12:45