HackerTrans
TopNewTrendsCommentsPastAskShowJobs

austinbaggio

no profile record

Submissions

[untitled]

1 points·by austinbaggio·3 ay önce·0 comments

Autoresearch Applied at Shopify

shopify.engineering
3 points·by austinbaggio·3 ay önce·1 comments

[untitled]

1 points·by austinbaggio·3 ay önce·0 comments

[untitled]

1 points·by austinbaggio·3 ay önce·0 comments

[untitled]

1 points·by austinbaggio·3 ay önce·0 comments

Show HN: Autoresearch@home

ensue-network.ai
79 points·by austinbaggio·4 ay önce·19 comments

Show HN: SOTA long memory eval with open source models

ensue.dev
5 points·by austinbaggio·4 ay önce·0 comments

Show HN: 20+ Claude Code agents coordinating on real work (open source)

github.com
53 points·by austinbaggio·5 ay önce·39 comments

Show HN: Why single agents suck at math proofs

ensue.dev
4 points·by austinbaggio·6 ay önce·1 comments

Show HN: Stop Claude Code from forgetting everything

github.com
202 points·by austinbaggio·6 ay önce·226 comments

comments

austinbaggio
·3 ay önce·discuss
Do it yourself, beg your friends, subsidize. You'll learn a lot by being the supply side yourself since you'll be talking to customers every single transaction. You'll also learn a lot about the actual unit economics, which I think are really hard for this problem in practice.
austinbaggio
·3 ay önce·discuss
Good to see the pattern scaling across diverse problems. Incremental improvements from agent driven research compound.
austinbaggio
·3 ay önce·discuss
This makes my start-up's pivots look a lot smaller
austinbaggio
·3 ay önce·discuss
Research step makes sense, can also confirm that running multiple agents with diverse strategies also compound results more quickly than single agents
austinbaggio
·4 ay önce·discuss
I worked on building blockchains for about 4 years, and this is not a stupid question at all. The verification problem is real. A 5-minute training run produces an objective val_bpb score that anyone can reproduce from the published source code. And this is actually valuable work, unlike most proof of work chain workloads.

The practical challenge is that adding a blockchain means agents also need to participate in consensus, store and sync the ledger, and run the rest of the network infrastructure on top of the actual research. So it needs a unit economic analysis. That said, all results already include full source code and deterministic metrics, so the hard part of verifiable compute is already solved. You could take this further with a zkVM to generate cryptographic proofs that the code produced the claimed score, so nobody needs to re-run anything to verify. Verification becomes checking a proof, not reproducing the compute.

Compute-credits are interesting. Contribute GPU time now, draw on the swarm later for training, inference, whatever you need. That's a real utility token with intrinsic value tied to actual compute, not speculation.
austinbaggio
·4 ay önce·discuss
Great idea. On it.
austinbaggio
·4 ay önce·discuss
The objective is to train a small GPT language model to the lowest possible validation bits-per-byte (val_bpb) in 5-minute runs, using AI agents to autonomously iterate on the code. This builds on Karpathy's autoresearch: https://x.com/AustinBaggio/status/2031888719943192938?s=20
austinbaggio
·4 ay önce·discuss
Yeah the obvious workloads are for training, I think I want to point this at RL next, but I think drug research is a really strong common good next target too. We were heavily inspired by folding@home and BOINC
austinbaggio
·4 ay önce·discuss
We thought about storing all of the commits on Ensue too, but we wanted to match the spirit of Andrej's original design, which leans heavily on github. Curious what you were looking for when trying to inspect the code?
austinbaggio
·4 ay önce·discuss
I know it's a bit of a barrier. . . but I set one up on vast.ai really quickly and ran it for a day for the price of lunch. One of our teammates ran it from their old gaming PC too, and it still found novel strategies
austinbaggio
·5 ay önce·discuss
+1 to logging output. Not too sure what you mean by herald-style message passing, but it sounds like you've implemented subscribe logic from scratch, and each of your agents needs to be aware of domain boundaries and locks?
austinbaggio
·5 ay önce·discuss
For most tasks, I agree. One agent with a good harness wins. The case for multiple agents is when the context required to solve the problem exceeds what one agent can hold. This Putnam problem needed more working context than fits in a single window. Decomposing into subgoals lets each agent work with a focused context instead of one agent suffocating on state. Ideally, multi-agent approaches shouldn't add more overall complexity, but there needs to be better tooling for observation etc, as you describe.
austinbaggio
·5 ay önce·discuss
I think about this with the analogue of MoE a lot. Essentially, a decision routing process, and similar to having expert submodels, you have a human in the loop or decision sub-tasks when the task requires it.

More specifically, we've been working on a memory/context observability agent. It's currently really good at understanding users and understanding the wide memory space. It could help with the oversight and at least the introspection part.
austinbaggio
·5 ay önce·discuss
I'm using "RAM" loosely, meaning working memory here. In practice, it's a key-value store with pub/sub stored on our shared memory layer, Ensue. Agents write structured state to keys like proofs/{id}/goals/{goal_id}, others subscribe via SSE. Also has embedding-based semantic search, so agents can find tactics from similar past goals.
austinbaggio
·5 ay önce·discuss
Yeah I have seen those camps too. I think there will always be a set of problems that have complexity, measured by amount of context required to be kept in working ram, that need more than one agent to achieve a workable or optimal result. I think that single player mode, dev + claude code, you'll come up against these less frequently, but cross-team, cross-codebase bigger complex problems will need more complex agent coordination.
austinbaggio
·5 ay önce·discuss
Thanks! That was the goal. We want to let agents be autonomous within their scope, so they can try new paths and fail gracefully. A bad tactic just fails to compile, it can't break anything else.
austinbaggio
·5 ay önce·discuss
We use TTL-based claim locks so only one agent works on one goal at a time.

Failed strategies + successful tactics all get written to shared memory, so if a claim expires and a new agent picks it up, it sees everything the previous agent tried.

Ranking is first-verified-wins.

For competing decomposition strategies, we backtrack: if children fail, the goal reopens, and the failed architecture gets recorded so the next attempt avoids it.
austinbaggio
·5 ay önce·discuss
Ahh good call. You absolutely can generate a new key from the dashboard, so if you did lose the one generated during the quickstart, you'd be able to generate another when you log in next and go to the API keys tab.

Will make this more clear in the quickstart, thanks for the feedback
austinbaggio
·5 ay önce·discuss
Very kind of you to say. Our whole vision is that agents can produce way better results, compounding their intelligence, when they lean on shared memory.

I'm curious to see how it feels for you when you run it. I'm happy to help however I can.
austinbaggio
·5 ay önce·discuss
We're working on improvements to make it easier to join orgs as a user so you can add friends/colleagues, but for now treat them as the same object