Show HN: Why write code if the LLM can just do the thing? (web app experiment)
github.com
Show HN: Why write code if the LLM can just do the thing? (web app experiment)
1–10 of 332 posts
Re: Show HN: Why write code if the LLM can just do the thing? (web app experiment)
#2Re: Show HN: Why write code if the LLM can just do the thing? (web app experiment)
#3Maybe next step is have the llm create persistent tools from the queries it uses most often.
Re: Show HN: Why write code if the LLM can just do the thing? (web app experiment)
#4I did a version of this where the AI writes tools on the fly but gets to reuse them on future calls, trying to address the cost / performance issues. Migrations are challenging because they require some notion of an atomic update across the db and the tools.
This is a nice model of organically building software on the fly and even letting end users customize it on the fly.
Re: Show HN: Why write code if the LLM can just do the thing? (web app experiment)
#5I don't see a point in using probabilistic methods to perform a deterministic logic. Even if it's output is correct, it's wasteful.
Re: Show HN: Why write code if the LLM can just do the thing? (web app experiment)
#6Re: Show HN: Why write code if the LLM can just do the thing? (web app experiment)
#7Re: Show HN: Why write code if the LLM can just do the thing? (web app experiment)
#8Maybe next step is have the llm create persistent tools from the queries it uses most often.
Re: Show HN: Why write code if the LLM can just do the thing? (web app experiment)
#9Generating code will always be more performant and reliable than this. Just consider the security implications of this design...