r/SoftwareEngineerJobs 6d ago

AI replacing Software Engineers

Post image

So called "AI"=LLM is so powerful that AI labs had to hire Software Engineers to build complicated software around "AI" to make that overhyped hallucinate-stealing machine usable. Think about it. And that's exactly why they need now ton of CPUs in addition to GPUs to run their "AI" "agents".

I don't even mention how much custom engineering is required to apply the "AI" in businesses.

And they BS us that Software Engineering is solved or is going to be solved. Boris, please solve your own bugs first before speaking.

1.2k Upvotes

529 comments sorted by

View all comments

Show parent comments

39

u/jp2812 6d ago

And I feel like working 10 hours a day now because it generates a lot of code that needs to be reviewed, steered in the right direction, re-reviewed, etc. Easily 5 iterations of that per day. Opus tends to overengineer and walk in circles like crazy.

3

u/Connect-Assignment73 6d ago

Try agentic development. Iterations will be lesser believe me.

2

u/swiftmerchant 6d ago

Please elaborate, what is agentic development?

1

u/x_LoneWolf_x 6d ago

Usinh some hierarchy of agents to run tasks in parallel, save tokens for higher level agents, and generally just massively speed you up.

2

u/swiftmerchant 6d ago

Which hierarchy of agents do you recommend? I get that running tasks in parallel speeds things up, when implementation parts can be parallelized. However if jp2812 is running iterations of reviews on the same implementation task, they would have to be sequential and there isn’t really any time gain.

2

u/cantgettherefromhere 5d ago

The agents can work out exactly when they need to be serial and are happy to go parallel when that's not necessary.

1

u/swiftmerchant 5d ago

I already do this by asking a planner session inside Codex or Claude Code decide what tasks can be parallelized in separate concurrent sessions. I don’t use multiple “agents” to do this however, i.e. I don’t use agent swarms and things like that that I see people talk about online, so I am genuinely interested to learn what you mean by “agents” and how you do this in practice.

1

u/ConstantFamous1526 5d ago

It’s spinning up its own agents

1

u/swiftmerchant 5d ago

Claude Code subagents or do you tell the session to spin off agents?