frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

Show HN: Agno – A full-stack framework for building Multi-Agent Systems

https://github.com/agno-agi/agno
74•bediashpreet•1d ago

Comments

JimDabell•1d ago
> At Agno, we're obsessed with performance. Why? because even simple AI workflows can spawn thousands of Agents. Scale that to a modest number of users and performance becomes a bottleneck.

This strikes me as odd. Aren’t all these agents pushing tokens through LLMs? The number of milliseconds needed to instantiate a Python object and the number of kilobytes it takes up in memory seem irrelevant in this context.

sippeangelo•1d ago
I'm really curious what simple workflows they've seen that span THOUSANDS of agents?!
bediashpreet•1d ago
In general we instantiate one or even multiple agents per request (to limit data and resource access). At moderate scale, like 10,000 requests per minute, even small delays can impact user experience and resource usage.

Another example: there a large, fortune 10 company that has built an agentic system to sift through data in spreadsheets, they create 1 agent per row to validate everything in that row. You might be able to see how that would scale to thousands of agents per minute.

gkapur•1d ago
If you are running things locally (I would think especially on the edge, whether on not the LLM is local or in the cloud) this would matter. Or if you are running some sort of agent orchestration where the output of LLMs is streaming it could possibly matter?
bediashpreet•1d ago
You’re right, inference is typically the bottleneck and it’s reasonable to think the framework’s performance might not be critical. But here’s why we care deeply about it:

- High Performance = Less Bloat: As a software engineer, I value lean, minimal-dependency libraries. A performant framework means the authors have kept the underlying codebase lean and simple. For example: with Agno, the Agent is the base class and is 1 file, whereas with LangChain you'll get 5-7 layers of inheritance. Another example: when you install crewai, it installs the kubernetes library (along with half of pypi). Agno comes with a very small (i think <10 required dependencies).

- While inference is one part of the equation, parallel tool executions, async knowledge search and async memory updates improve the entire system's performance. Because we're focused on performance, you're guaranteed top of the line experience without thinking about it, its a core part of our philosophy.

- Milliseconds Matter: When deploying agents in production, you’re often instantiating one or even multiple agents per request (to limit data and resource access). At moderate scale, like 10,000 requests per minute, even small delays can impact user experience and resource usage.

- Scalability and Cost Efficiency: High-performance frameworks help reduce infrastructure costs, enabling smoother scaling as your user base grows.

I'm not sure why you would NOT want a performant library, sure inference is a part of it (which isn't in our control) but I'd definitely want to use libraries from engineers that value performance.

onebitwise•1d ago
I feel the cookbook is a little messy. I would love to see an example using collaborative agents, like an editorial team that write articles based on searches and expert of topics (just as example)

Can be better to have a different repo for examples?

Btw great project! Kudos

maxtermed•1d ago
Good point. The cookbook can be hard to navigate right now, but that's mostly because the team is putting out a tremendous amount of work and updating things constantly, which is a good problem to have.

This example might be close to what you're describing: https://github.com/agno-agi/agno/blob/main/cookbook/workflow...

It chains agents for web research, content extraction, and writing with citations.

I used it as a starting point for a couple projects that are now in production. It helped clarify how to structure workflows.

bediashpreet•1d ago
Thank you for the feedback and the kind words.

Agree that the cookbooks have gotten messy. Not an excuse but sharing the root case behind it: we're building very, very fast and putting examples out for users quickly. We maintain backwards compatibility so sometimes you see 2 examples doing the same thing.

I'll make it a point to clean up the cookbooks and share more examples under this comment. Here are 2 to get started:

- Content creator team: https://github.com/agno-agi/agno/blob/main/cookbook/examples...

- Blog post generator workflow: https://github.com/agno-agi/agno/blob/main/cookbook/workflow...

Both are easily extensible. Always available for feedback at ashpreet[at]agno[dot]com

ElleNeal•1d ago
I love Agno, they make it so easy to build agents for my Databutton application. Great work guys!!
bediashpreet•1d ago
Thank you for the kind words <3
LarsenCC•1d ago
This is awesome!
bediashpreet•1d ago
<3
idan707•1d ago
Over the past few months, I've transitioned to using Agno in production, and I have to say, the experience has been nothing short of fantastic. A huge thank you for creating such an incredible framework!
bediashpreet•1d ago
Thank you for the kind words <3
lerchmo•1d ago
One thing I don’t understand about these agent frameworks… cursor, Claude, Claude code, cline, v0… all of the large production agents with leaked prompts use xml function calling, and it seems like these frameworks all only support native json schema function calling. This is maybe the most important decision and from my experience native tool calling is just about the worst option.
maxtermed•1d ago
I've been using this framework for a while, it's really solid IMO. It abstracts just enough to make building reliable agents straightforward, but still leaves lots of room for customization.

The way agent construction is laid out (with a clear path for progressively adding tools, memory, knowledge, storage, etc.) feels very logical.

Definitely lowered the time it takes to get something working.

bediashpreet•1d ago
Thank you for using Agno and the kind words!
bosky101•1d ago
Your first 2 examples on your readme involve single agents. These are a waste of time. We don't need yet another llm api call wrapper. An agentic system with just 1 tool / agent is pointless.

Thankfully your third example half way down does have an eg with 3 agents. May have helped to have a judge/architect agent.

Not clear about the infra required or used.

Would help to have helper functions to get and set session state/memory. Being able to bootstrap from json could be a good feature.

Would help to have diff agents with diff llms to show that you have thought things through.

Why should spawning 1000's of agents even be in your benchmark. Since when did we start counting variables. Maybe saying each agent would take X memory/ram would suffice - because everything is subjective, can't be generalized.

Consider a rest api that can do what the examples did via curl?

Good luck!

fcap•1d ago
In my opinion to really lift off here you need to make sure we can use these agents in production. That means the complete supply chain has to be considered. The deployment part is the heavy part and most people can run it locally. So if you close that gap people will be able to mass adopt. I am totally fine if you monetize it as a cloud service but give a full docs from code, test monitoring to deployment. And one more thing. Show what the framework is capable of. What can I do. Lots of videos and use cases here. Every single second needs to be pushed out.

Deep learning gets the glory, deep fact checking gets ignored

https://rachel.fast.ai/posts/2025-06-04-enzyme-ml-fails/index.html
129•chmaynard•1h ago•14 comments

A deep dive into self-improving AI and the Darwin-Gödel Machine

https://richardcsuwandi.github.io/blog/2025/dgm/
21•hardmaru•1h ago•2 comments

Destination: Jupiter

https://clarkesworldmagazine.com/liptak_06_25/
54•AndrewLiptak•3h ago•14 comments

Quarkdown: A modern Markdown-based typesetting system

https://github.com/iamgio/quarkdown
563•asicsp•14h ago•240 comments

Show HN: Ephe – A Minimalist Open-Source Markdown Paper for Today

https://github.com/unvalley/ephe
7•unvalley•20m ago•0 comments

The Small World of English

https://www.inotherwords.app/linguabase/
107•michaeld123•7h ago•54 comments

Show HN: AirAP AirPlay server - AirPlay to an iOS Device

https://github.com/neon443/AirAP
113•neon443•2h ago•13 comments

Show HN: An Alfred workflow to open GCP services and browse resources within

https://github.com/dineshgowda24/alfred-gcp-workflow
30•dineshgowda24•3h ago•6 comments

(On | No) Syntactic Support for Error Handling

https://go.dev/blog/error-syntax
270•henrikhorluck•6h ago•332 comments

Activeloop (YC S18) Is Hiring Senior Back End and AI Search Engineers(Onsite, MV)

https://careers.activeloop.ai/
1•davidbuniat•2h ago

Show HN: Localize React apps without rewriting code

https://github.com/lingodotdev/lingo.dev
48•maxpr•5h ago•40 comments

CVE-2024-47081: Netrc credential leak in PSF requests library

https://seclists.org/fulldisclosure/2025/Jun/2
33•jupenur•4h ago•6 comments

Ask HN: Options for One-Handed Typing

49•Townley•3h ago•55 comments

The Shape of the Essay Field

https://paulgraham.com/field.html
48•luisb•13h ago•32 comments

Show HN: I wrote a Java decompiler in pure C language

https://github.com/neocanable/garlic
135•neocanable•10h ago•67 comments

Show HN: Controlling 3D models with voice and hand gestures

https://github.com/collidingScopes/3d-model-playground
75•getToTheChopin•8h ago•17 comments

Swift at Apple: Migrating the Password Monitoring Service from Java

https://www.swift.org/blog/swift-at-apple-migrating-the-password-monitoring-service-from-java/
172•fidotron•5h ago•122 comments

Can adults grow new brain cells?

https://www.livescience.com/health/neuroscience/can-adults-grow-new-brain-cells
33•bookofjoe•2h ago•12 comments

Yoshua Bengio Launches LawZero: A New Nonprofit Advancing Safe-by-Design AI

https://lawzero.org/en/news/yoshua-bengio-launches-lawzero-new-nonprofit-advancing-safe-design-ai
34•WillieCubed•2h ago•21 comments

Vision Language Models Are Biased

https://vlmsarebiased.github.io/
105•taesiri•10h ago•84 comments

There should be no Computer Art (1971)

https://dam.org/museum/essays_ui/essays/there-should-be-no-computer-art/
66•glimshe•12h ago•99 comments

Builder.ai Collapses: $1.5B 'AI' Startup Exposed as 'Indians'

https://www.ibtimes.co.uk/builderai-collapses-15bn-ai-startup-exposed-actually-indians-pretending-bots-1734784
266•healsdata•9h ago•170 comments

Technical Guide to System Calls: Implementation and Signal Handling in Modern OS

https://mohitmishra786.github.io/chessman/2025/03/31/Technical-Guide-to-System-Calls-Implementation-and-Signal-Handling-in-Modern-Operating-Systems.html
13•signa11•6h ago•4 comments

Show HN: PinSend – Share text between devices using a PIN(P2P, no login)

https://pinsend.app
50•avovsya•8h ago•29 comments

Oh fuck! How do people feel about robots that leverage profanity?

https://arxiv.org/abs/2505.05831
14•rolph•6h ago•28 comments

Plutonium Mountain: The 17-year mission to guard remains of Soviet nuclear tests

https://www.belfercenter.org/publication/plutonium-mountain-inside-17-year-mission-secure-legacy-soviet-nuclear-testing
75•jmillikin•12h ago•42 comments

Fun with Futex

https://blog.fredrb.com/2025/06/02/futex-fun/
73•ingve•16h ago•20 comments

Polish engineer creates postage stamp-sized 1980s Atari computer

https://arstechnica.com/gadgets/2025/06/polish-engineer-creates-postage-stamp-sized-1980s-atari-computer/
3•dangle1•27m ago•0 comments

The Metamorphosis of Prime Intellect (1994)

https://localroger.com/prime-intellect/mopiall.html
143•lawrenceyan•18h ago•67 comments

Covert Web-to-App Tracking via Localhost on Android

https://localmess.github.io/
245•sebastian_z•10h ago•194 comments