惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
腾讯CDC
有赞技术团队
有赞技术团队
Vercel News
Vercel News
MongoDB | Blog
MongoDB | Blog
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog RSS Feed
I
InfoQ
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
The Cloudflare Blog
B
Blog
C
Check Point Blog
Stack Overflow Blog
Stack Overflow Blog
IT之家
IT之家
U
Unit 42
D
Docker
月光博客
月光博客
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
A
About on SuperTechFans

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
Brontosaurus: A Voice-Driven Generative AI Canvas | Thoma...
thomasdhughe · 2026-06-02 · via Hacker News: Show HN

Click for audio.

Brontosaurus is a web-based generative canvas, where you speak aloud what you want to see, and Bronto builds a widget of it in under a second. The underlying agents run on OpenAI’s gpt-oss-120b, served by Cerebras at a blistering 3,000 tokens/second, which makes the whole thing feel like magic :)

Brontosaurus is very much in development - if you’ve got ideas or things you’d want to see, send them my way, I’d love to hear them! (hello@thomasdhughes.com)

Contents:

  • The Inspiration
  • The Technical
  • The Future
  • Acknowledgments

The Inspiration

Two phenomenal blog posts inspired this project.

The first was Thinking Machines’ release of an Interaction Model.

On the technical side, I liked the architecture of a multi-modal (voice+vision+text) model hooked into a more powerful quasi-background agent which quietly executes requests without interrupting the flow of conversation. There are certainly other labs doing this today, but Thinking Machines takes a unique approach - Sean Goedecke does a great job of breaking down that novelty in his own blog post.

On the philosophical side, Thinking Machines argues that current discussions around AI agents mistakenly center agentic autonomy (the ability for an agent to receive a task, then work for hours uninterrupted) as opposed to human-AI collaboration (the ability for an agent to work on a task in tandem with a person). They assert that this is a mistake - that designing models this way leads to “humans increasingly get[ing] pushed out not because the work doesn’t need them, but because the interface has no room for them.” You put in your prompt and get out of the way. This new family of Interaction Models, on the flip side, operates more in the way you’d work with a teammate - you can talk, type, point at things, interrupt with new ideas. You can collaborate.

Yes to this!

Both the technical and philosophical pieces of this approach spoke to me, and they together made me want to build something of the same ethos. In Bronto, that manifests as prioritizing creation at the speed of thought above all else. It is an argument that more than capability, more than intelligence, more than long-running task autonomy, the ability to speak something into existence in under a second makes you feel like anything is possible.

The second blog post was from Ink & Switch, an independent research lab with a focus on malleable software, a concept I explored in Modifying Websites with LLM-Generated Javascript Bookmarks. The post is called “chitter chatter”, and it outlines a vision for a generative canvas. It reads like somebody’s diary, and makes the proposed software sound friendly and warm, which I always admire when people can do - code is too often cold and numbers. I will not apologize for that phrasing because I am prideful, but I do not stand by it let us not mention it going forward.

I read this piece (along with Thinking Machines’), loved it, and wanted to build something like it. Brontosaurus was born.

The Technical

Under the hood, there’s some multi-agent orchestration going on.

There are two agent types at play: Conductor and Builder. Both run on OpenAI’s gpt-oss-120b, served by Cerebras at 3,000 tokens/second. To put this in perspective, ChatGPT in the browser responds at ~50 tokens/second.

When you tap the space bar, the web app starts listening, and when you tap again, it does speech-to-text with Chrome’s built-in Web Speech API.

The text of what you said gets passed to the Conductor agent, along with a JSON array describing the widgets currently on the canvas, each of which have

  • an id (unique identifier for tool calls),
  • a title (what you see at the top of each widget),
  • a description (internal-facing explanation of what the widget contains), and
  • a rect (the widget’s size and position on the canvas).

The Conductor agent then makes tool calls. It can

  • arrange - move or resize a widget by id, without changing the contents (this is done by updating the rect value for that widget),
  • delete - remove a widget by id,
  • clear - remove all widgets at once,
  • create and edit.

The first three tool calls are handled deterministically. The final two - create and edit - send instructions to a Builder agent.

When createing, the Builder agent receives just the requested widget’s description. When editing, it receives the full HTML of the current widget along with the change instructions.

The Builder agent then returns a complete, self-contained HTML document, which is subsequently cleaned and rendered in an iframe.

Additional design choices which add to the magic:

  1. The Conductor agent can make multiple tool calls with a single instruction - this makes it possible to say “delete the piano, make a calculator, put it where the piano was” and it all happens at once.
  2. arrange calls don’t need to wait for the Builder agent to finish building - as soon as the create is run, an id exists, so widgets which are still populating can be moved around.
  3. Builder agents run in parallel so multiple widgets can be made at once.

The Future

There’s lots of room for improvement here.

For one, gpt-oss-120b is 9 months old and just 120B parameters. This means it’s dirt cheap - I used Brontosaurus nonstop for over an hour and spent less than a dollar - and that the ceiling for quality of output is way higher. If we used a model like GLM 4.7 from Z.ai (also served by Cerebras), it’d be 4x the cost and 1/3rd the speed, but 3x the parameters so could likely build far more complex widgets. The question is if the speed tradeoff would be worth it.

On this note, I initially added live search capabilities via Exa AI so that Bronto could pull things like weather and live stock price, but in my evals it added a delay of ~0.9s, which stings once you’ve gotten used to the sub-second generation speed.

Finally, the major one - a virtual file system! At the moment, all the widgets Bronto makes are ephemeral, single-use HTML files in iframes, but a VFS would allow for surfacing pre-existing documents and previously-built widgets to iterate on, as well as make it possible for Bronto to selectively pull the contents of widgets into its context window, so commands like “I checked off what I already have from the ingredients list, please remove those” would work.

The above are all technical changes. But I know there is a lot of interesting things that can be done just with the current architecture. The 8 row step sequencer (beat maker) at the end of the demo initially came from me saying “I want to make some music” and Bronto produced three widgets, that being one of them. It totally blew my mind. Which is why I put at the top: if you’ve got ideas, please send them my way! (hello@thomasdhughes.com) I’ll try them out and send back a video I promise.

Goodbye!

-Thomas


Thank you Thinking Machines and Ink & Switch for inspiring me with your work and writing.

Thank you Tristan and Steven for pressure testing early versions of Brontosaurus with requests I hope it never fulfills.