Menu
Sign In Search Podcasts Charts People & Topics Add Podcast API Blog Pricing

Eno Reyes

๐Ÿ‘ค Speaker
513 total appearances

Appearances Over Time

Podcast Appearances

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

You know, the third time you write or edit a file without calling a linter.

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

Maybe you insert a reminder that say, hey, by the way, you should just check up to make sure this work is actually valid.

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

You can seek these out in the background.

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

And whenever you edit a file, provide language server feedback that helps the model understand, oh, I might be missing these things.

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

So there's tons of things you can do within the harness that make the model more aware without needing to actually waste LLM calls.

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

then from a behavioral perspective there there's also a lot that goes into enabling the tooling to get easy answers from important questions so like we have uh in our product an api for agent readiness which basically and a dashboard so so there's 150 plus signals that a code base could have uh ranging from it is a linter present to uh

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

You know, are tests available?

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

Is there documentation across the code base?

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

And this applies to mono repos where it will segment out each project or single code bases.

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

So when you make it really easy for an agent to seek that information, like one API call to get the answer, you make it easier in general for the system to rely on that information versus if it needs to find that out from scratch every time, you're going to waste your users tokens trying to get the answer.

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

Yeah.

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

Totally.

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

And hooks are also great for that.

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

Like, I think there's a pretty popular one right now called Ralph Wiggums.

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

It which is a odd name.

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

And I always feel silly saying that it's from the seasons.

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

But it's basically a hook that you run at the end when the agent loop stops.

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

And, and it sends a prompt back to the agent that basically says, you know, here's the step by step plan of what you were supposed to do.

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

did you actually validate and complete the work that you're supposed to do?

The Neuron: AI Explained
This AI Agent Builds Better Code Than Most Developers (Factory AI)

If not, restart, right?