You should write an agent
1–10 of 409 posts
Re: You should write an agent
#2Re: You should write an agent
#3Yeah I was inspired after https://news.ycombinator.com/item?id=43998472 which is also very concrete
Re: You should write an agent
#4I am looking for a language or library agnostic pattern like we have MVC etc. for web applications. Or Gang of Four patterns but for building agents.
Re: You should write an agent
#5How.. please don't say use langxxx library I am looking for a language or library agnostic pattern like we have MVC etc. for web applications. Or Gang of Four patterns but for building agents.
Re: You should write an agent
#6that sums up my experience in AI over the past three years. so many projects reinvent the same thing, so much spaghetti thrown at the wall to see what sticks, so much excitement followed by disappointment when a new model drops, so many people grifting, and so many hacks and workarounds like RAG with no evidence of them actually working other than "trust me bro" and trial and error.
Re: You should write an agent
#7I'm writing a personal assistant which, imo, is distinct from an agent in that it has a lot of capabilities a regular agent wouldn't necessarily need such as memory, task tracking, broad solutioning capabilities, etc... I ended up writing agents that talk to other agents which have MCP prompts, resources, and tools to guide them as general problem solvers. The first agent that it hits is a supervisor that specializes in task management and as a result writes a custom context and tool selection for the react agent it tasks.
All that to say, the farther you go down this rabbit hole the more "engineering" it becomes. I wrote a bit on it here: https://ooo-yay.com/blog/building-my-own-personal-assistant/
Re: You should write an agent
#8Re: You should write an agent
#9How.. please don't say use langxxx library I am looking for a language or library agnostic pattern like we have MVC etc. for web applications. Or Gang of Four patterns but for building agents.
The whole post is about not using frameworks; all you need is the LLM API. You could do it with plain HTTP without much trouble.
Re: You should write an agent
#10How.. please don't say use langxxx library I am looking for a language or library agnostic pattern like we have MVC etc. for web applications. Or Gang of Four patterns but for building agents.