Reading view

There are new articles available, click to refresh the page.

Can AI Now Design PCBs That Just Work?

With the recent release of its GPT-6 Astra model, OpenAI explicitly pushed the claim that it is capable of designing complete circuit boards in KiCad, starting from a provided schematic and outputting a fully routed PCB that theoretically could be sent off to be manufactured. This of course raises the question whether this is just a nifty party trick that works under strictly controlled conditions like most auto-routing tools, or whether there’s more to it. In a recent [EEBench] blog post, OpenAI’s claims are put to the test.

Back in 2024, we looked at how LLMs handle circuit board design, starting with the schematic. The conclusion was that you might as well just do it all by hand. Tracking progress here, [EEBench] is an electrical engineering agent benchmark that tests how effective these so-called AI agents are at performing useful hardware engineering work. As their methodology already makes clear, creating a populated and routed PCB from a schematic is just one step of many.

Consequently, GPT-6 Astra scores 69.3% (+/- 10%) on their benchmark, roughly in the same ballpark as Claude Opus 5, albeit cheaper and faster. It should be noted that [EEBench] is run by the developers behind Atopile, which is a code-based system for creating PCBs in KiCad with a strong focus on use by such AI agents.

Despite this, the blog post makes it clear that there is still a long way to go before hardware engineers can receive their pink slips and take up another profession. After all, while vibe-coding a quick prototype PCB can be a nice shortcut, for a one-off project PCB, most boards are expected to handle all the edge cases, be fully validated by multiple independent engineers, and have passed stringent testing before committing to a production run.

(Top image: from OpenAI GPT-6 Astra KiCad video)

Report: Nvidia to acquire AI model repository Hugging Face for $13 billion

Nvidia is reportedly moving forward to acquire Hugging Face for $12.9 billion. The acquisition could help the hardware giant expand and fortify its deep integration with the wider AI industry.

Among other things, Hugging Face is a cloud repository for AI models, similar in some respects to what GitHub is for conventional computer software. Developers and researchers search for models that meet certain criteria, download and run them, and fine-tune them into different variants that then get uploaded back up to Hugging Face.

Read full article

Comments

© Hugging Face / anucha sirivisansuwan via Getty Images

IBM's new Granite 4.2 models ride the wave of interest in local LLMs

IBM has rolled out the newest models in its family of open-weight large language models designed to be downloaded and self-hosted. The newly launched Granite 4.2 comes in 3B, 8B, and 30B parameter variants.

Like previous versions, IBM is taking a decoder-only approach here. These new releases offer a 128,000-token context window natively. The 8B and 30B variants (not the 3B one) also go through an agentic reinforcement-learning block; they were trained for expanded capabilities like using the terminal, searching the web, or using external tools. The 3B model supports tools too, but without the same level of specialized training.

Read full article

Comments

© Samuel Axon

Etzioni on AI: An Opinionated Glossary of AI

Definitions for the AI era. (GPT-5.6 Sol Illustration, Click for larger image.)

Jargon stinks.  What do the terms open weights, RAG, and agent mean exactly? Here’s a plain English, slightly snarky glossary of befuddling AI terminology with references for further reading.

AI is a broad name for the technology. Machine learning is the part where a system learns from data instead of following rules somebody wrote, a neural network is the structure that does the learning, and deep learning just means a neural network with a lot of layers.

Here’s the nitty-gritty: the terms that get used loosely, and the distinctions the loose usage hides.

1. Model, LLM, frontier model

ChatGPT is the app you open; an LLM, or large language model, is the AI running inside it.

“Frontier” isn’t a technical category at all. It means the handful of biggest and most capable models at any given moment, so the trophy keeps changing hands.

Everyone says “LLM” and hardly anyone could define it on the spot. “Frontier model” is worse. It’s a ranking, announced by the people being ranked.

Further reading: How ChatGPT Works: A Non-Technical Primer (MIT Sloan). Rama Ramakrishnan walks through the predict-the-next-word mechanism everything else is built on.

2. Prompts, tokens, parameters

A prompt is the thought, question, or instructions you provide to the LLM (plus whatever the app added before it without telling you). The LLM takes the prompt and generates words, both in its internal “thinking” process and in the answer it shows you.  

Tokens are (roughly) the words going in and coming out. The model chops your prompt into tokens, then produces more of them as it answers, and they’re what the industry charges by.

Parameters, also called weights, are the numbers inside the model. A frontier model has hundreds of billions of them and the biggest now run to trillions, and nobody can tell you what any single one does.

Parameter counts get quoted like horsepower. The number nobody advertises is how many tokens it takes to answer your question, and that’s the one that shows up on the bill.

Further reading: The only AI glossary you’ll need this year (TechCrunch, July 2026). Its entries on tokens and weights are the clearest short treatment of the building blocks.

3. Pre-training, post-training, fine-tuning

Pre-training is feeding the model most of the internet, so it learns to predict the next word in a sentence. That’s the expensive part, and it produces something that knows a great deal but can’t follow an instruction.

Post-training is where people rank its answers and it learns to give more of what ranked well. Fine-tuning is post-training done by you, to somebody else’s model, on your data.

Pre-training costs hundreds of millions and gets you a model that won’t answer a question well. Post-training is what gets you the product.

Further reading: Illustrating Reinforcement Learning from Human Feedback (RLHF) (Hugging Face, 2022). The clearest walk-through of how ranking a model’s answers becomes a signal for training.

4. Training from scratch vs. distillation

From scratch, you buy (or rent) the computers and do the work to build and train a model. Distillation trains a cheap model on an expensive model’s outputs, so it inherits the behavior without the bill. Distillation is against most AI companies’ terms of service.

OpenAI accused DeepSeek of distilling its models, which is a bold position for a company that trained on the whole internet without asking. Learning from other people’s work is fine right up until the other people are you.

Further reading: OpenAI accuses DeepSeek of “free-riding” on American R&D (Rest of World, February 2026). OpenAI’s memo to Congress, and an analyst’s reply that no model is an island.

5. Training vs. inference

Training is how you build a model. Inference is what happens every time it answers: the model runs and produces a result.

Training is a one-time cost. Inference is a cost you’ll pay forever. Training runs for months and costs hundreds of millions; one inference, meaning one answer, costs a fraction of a cent, and it happens billions of times a day.

Training costs get announced. Inference costs get discovered. Only one of them shows up in a press release.

Further reading: Why AI’s next phase will likely demand more computational power, not less (Deloitte, 2025). Inference reaches about two-thirds of all AI compute in 2026, up from a third in 2023.

6. Open weights, open source, API-only

We typically use LLMs by accessing an app like ChatGPT, Claude, or Gemini. But experts often want the model itself, not just an app wrapped around it. Open weights means that an AI expert can download the model and run it on a server. You don’t get the data or the code that made it.

Open source means data and software that experts can use and modify, which almost no major model offers (AI2’s Olmo is a rare exception).

API-only means you can’t have the model at all. You send your text to the company’s computers, the answer comes back, and you pay for every use, which is also what’s happening when you use ChatGPT or Claude through an ordinary account.

Open weights is how you claim the open-source mantle without giving much away. Open washing, basically.

Further reading: Open-Weight Models Aren’t Enough. We Need Truly Open Source AI Models for Science and Society. (Stanford HAI, August 2026). James Landay’s term for downloadable weights without the data or code is “open distribution.”

7. Context window, memory, RAG

The context window is how much text the model can hold in mind at once, including your question and everything pasted into the conversation.

Memory is a feature that saves facts about you and slips them back into the context window later.

RAG, short for retrieval-augmented generation, searches a document collection and drops the relevant passages into the context window before the model answers.

Nothing in the model remembers you. The app keeps a file on you and pastes it in before every conversation, and that’s a less charming way to describe the same feature.

Further reading: Glossary of Terms: Generative AI Basics (MIT Sloan Teaching & Learning Technologies). Defines context window and RAG in plain language, and is careful to put the model’s “memory” in quotation marks.

8. Chatbot, workflow, agent

A chatbot answers and stops. A workflow runs the steps you defined, in your order. An agent receives a goal instead of steps, and works out for itself what to do, calling out to other software and checking the results until it’s done or stuck.

Ask about a delayed flight and a chatbot quotes you the policy; a workflow uploads the refund form you built; an agent rebooks you.

Useful test: if it decides its own next step, it’s an agent. If you decided the steps, it’s a workflow.

Further reading: Building effective agents (Anthropic, December 2024). The source of the distinction: workflows run predefined code paths, agents direct their own.

9. Hallucination, AI slop, AI cream

A hallucination is a confident falsehood, like a citation to a paper that doesn’t exist. The model isn’t lying; it has no notion of truth to violate. It’s producing text that looks like the right kind of answer.

AI slop is a different failure: accurate, fluent, and worthless. Think of the LinkedIn post that says nothing in 300 fluent words.

AI cream is the third case and the rare one: superb writing authored with the help of AI.

Nobody sets out to make slop. Everyone believes they’re making cream.

Further reading:  2025 Word of the Year: Slop (Merriam-Webster, December 2025). The dictionary definition turns on quantity: low-quality content “produced usually in quantity” by AI.

Why language models hallucinate (OpenAI, September 2025). Argues that hallucinations persist because benchmarks score accuracy alone, so guessing beats admitting ignorance.

10. Alignment, guardrails, censorship

Alignment is the research problem of getting a model to do what people want when nobody’s watching. Guardrails are the rules behind its refusals: “no, I won’t tell you how to make a bio weapon.” Censorship is a guardrail that blocked something you wanted.

The same refusal is “safety” in the press release, “guardrails” in the documentation, and “censorship” on X.

Further reading:  Model Spec (OpenAI, updated December 2025). A published rulebook for what one model will and won’t do, which makes refusals arguable rather than mysterious.

I snuck in one novel term that’s been sorely absent from the field.  Can you tell which one?

Further reading: other glossaries

Five general AI glossaries, listed roughly from most opinionated to most technical.

The only AI glossary you’ll need this year (TechCrunch). About 30 entries, written for readers who follow the industry news. Strongest on distillation and compute.

Artificial intelligence glossary: 60+ terms to know (TechTarget). The broadest of the mainstream lists, and the only one that bothers to define model collapse.

Glossary of Terms: Generative AI Basics (MIT Sloan Teaching & Learning Technologies). Twenty-odd entries aimed at people who use the tools rather than build them.

Glossary of Terms for Artificial Intelligence (Columbia Business School). The shortest and plainest. Useful as a test of which terms are unavoidable.

Machine Learning Glossary (Google for Developers). Hundreds of technical entries, and the only glossary here that defines “AI slop” a few lines away from several hundred pieces of real math.

❌