HackerTrans
TopNewTrendsCommentsPastAskShowJobs

garrett_makes

no profile record

comments

garrett_makes
·3 anni fa·discuss
I built and released something really similar to this (but smaller scope) for Laravel PHP this week: https://github.com/adrenallen/ai-agents-laravel

My take on this is, it should be easy for an engineer to spin up a new "bot" with a given LLM. There's a lot of boring work around translating your functions into something ChatGPT understands, then dealing with the response and parsing it back again.

With systems like these you can just focus on writing the actual PHP code, adding a few clear comments, and then the bot can immediately use your code like a tool in whatever task you give it.

Another benefit to things like this, is that it makes it much easier for code to be shared. If someone writes a function, you could pull it into a new bot and immediately use it. It eliminates the layer of "converting this for the LLM to use and understand", which I think is pretty cool and makes building so much quicker!

None of this is perfect yet, but I think this is the direction everything will go so that we can start to leverage each others code better. Think about how we use package managers in coding today, I want a package manager for AI specific tooling. Just install the "get the weather" library, add it to my bot, and now it can get the weather.
garrett_makes
·4 anni fa·discuss
Not exactly the same but similarly I made https://quicktodos.com for my wife and I to quickly share lists with real-time updating for things like going to the store or a daily task list.

Funny how so many of these exist with slightly different takes on the problem!