[see https://news.ycombinator.com/item?id=45988611 for explanation]
Show HN: Gambit, an open-source agent harness for building reliable AI agents
11–20 of 33 posts
Re: Show HN: Gambit, an open-source agent harness for building reliable AI agents
#12How would it compare?
Re: Show HN: Gambit, an open-source agent harness for building reliable AI agents
#13[under-the-rug stub] [see https://news.ycombinator.com/item?id=45988611 for explanation]
Re: Show HN: Gambit, an open-source agent harness for building reliable AI agents
#14Is this an alternative to https://mastra.ai/docs How would it compare?
I look at Gambit as more of an "agent harness", meaning you're building agents that can decide what to do more than you're orchestrating pipelines.
Basically, if we're successful, you should be able to chain agents together to accomplish things extremely simply (using markdown). Mastra, as far as I'm aware, is focused on helping people use programming languages (typescript) to build pipelines and workflows.
So yes it's an alternative, but more like an alternative approach rather than a direct competitor if that makes sense.
Re: Show HN: Gambit, an open-source agent harness for building reliable AI agents
#15Re: Show HN: Gambit, an open-source agent harness for building reliable AI agents
#16Re: Show HN: Gambit, an open-source agent harness for building reliable AI agents
#17[dead]
My philosophy is make the LLMs do as little work as possible. Only small, simple steps. Anything that can be reasonably done in code (orchestration, tool calls, etc) should be done in code. Basically any time you find yourself instructing an LLM to follow a certain recipe, just break it down to multiple agents and do what you can with code.
Re: Show HN: Gambit, an open-source agent harness for building reliable AI agents
#18[dead]
This seems to be where it’s at right now, we can’t seem to make the models significantly more intelligent, so we “inject” our own intelligence into the system, in the form of good old fashioned code. My philosophy is make the LLMs do as little work as possible. Only small, simple steps. Anything that can be reasonably done in code (orchestration, tool calls, etc) should be done in code. Basically any time you find yo…
Gambit hopefully solves some of that, giving you a set of primitives and principles that make it simpler to communicate intent.