Remix.run Logo
dukeyukey 5 hours ago

If you already know what the inputs/outputs are, why should you spend days or weeks of your life typing it out rather than giving it in a well-specified and tested form to an LLM to get it done a hundred times faster?

xigoi 25 minutes ago | parent | next [-]

The behavior of an LLM is not and cannot be “well-specified”.

4 hours ago | parent | prev | next [-]
[deleted]
JCTheDenthog 2 hours ago | parent | prev | next [-]

>rather than giving it in a well-specified and tested form

So, code?

dosisking 5 hours ago | parent | prev | next [-]

Because the LLM version will have countless number of bugs and security holes, which means you will spend weeks or months of your life fixing them.

chasd00 5 hours ago | parent | prev | next [-]

This is a truth that many are having a hard time accepting. Getting shoved into the light so fast is blinding.

skydhash 4 hours ago | parent | prev [-]

Because it’s rarely so black and white. Knowing the inputs and outputs is merely the first steps, you need to think about the transitions too as they have their own costs.

Those costs don’t disappear and it’s truly naive to think they don’t matter. Take security issues, they may arise because what you thinks was the input is merely a subset of the true input range. And the extra possibilities lead to unforeseen behavior.

A lot of programming is about ensuring that the input and the output are the sets defined in the specs. And the rest is that the transition/relation is the right tradeoffs of performance, correctness, and costs.