this post was submitted on 18 Jul 2025
186 points (95.6% liked)

Technology

73042 readers
2885 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
 

OpenAI launched ChatGPT Agent on Thursday, its latest effort in the industry-wide pursuit to turn AI into a profitable enterprise—not just one that eats investors' billions. In its announcement blog, OpenAI says its Agent "can now do work for you using its own computer," but CEO Sam Altman warns that the rollout presents unpredictable risks.

[...]

OpenAI research lead Lisa Fulford told Wired that she used Agent to order "a lot of cupcakes," which took the tool about an hour, because she was very specific about the cupcakes.

you are viewing a single comment's thread
view the rest of the comments
[–] brsrklf@jlai.lu 4 points 4 days ago* (last edited 4 days ago) (2 children)

I needed about 30 minutes to do a python application from scratch that took linear JSON data files, merged them and presented them as a tree in a GUI.

Before that I had barely done anything in python, basically could do a basic function declaration with a simple operation and nothing else. I even didn't have a lot of experience with UI at all.

But like you I had experience with java and such, and those skills transfer. All it took was searching basic syntax/related code examples and required library imports. And I mean basic, search engine search, not AI answers.

All I'm saying is, I really don't think AI is providing anything a lot more efficient than doing a good old crawl through API docs and stack overflow. So the fact it's using tremendous amounts of resources to maybe achieve a 10% efficiency boost is bothering me a lot.

[–] MagicShel@lemmy.zip 4 points 3 days ago* (last edited 3 days ago) (1 children)

If that was a 10% boost for you and you could've done it in 33 minutes without AI or experience, then my imposter syndrome has been right all along!

I'd bet that would've taken me a few days and maybe buying a reference book and starting with hello world.

[–] brsrklf@jlai.lu 3 points 3 days ago (1 children)

Did the AI gave you a starting point that would be very different from a bit of code someone submitted 10 years ago on stack exchange? Because in my experience, everything has already been asked and answered. This includes the most basic and naive stuff, and often I am very grateful for it, because, yeah, sometimes I need someone to guide me through the most basic stuff.

In fact, the AI needed that exact knowledge base and a bunch more to exist in the first place. It's just vaguely competent at retrieving it.

Anyway, I didn't say I had no experience, just the most minimal python experience. There are definitely a few quirks I had to learn (the data structures mostly), but for the rest is mostly finding the right method in the reference library, like you would in java.

[–] MagicShel@lemmy.zip 2 points 3 days ago

Logically, you would be right. My practical experience is I waste a lot less time trying to google multiple explanations something because one by itself isn't helping me figure it out, writing bugged PoC test code and thinking something is broken, sorting through a bunch of things that haven't been relevant for 3 versions, etc.

Of course the AI is trained on the same material we can an all find and read, but it does it orders of magnitude more quickly. The trade off is that it's not always right, but neither am I and neither are most sources on the internet right in all circumstances. But it's so fast and easy that I can iterate and evolve designs and understanding much more quickly than I could on my own.

[–] adespoton@lemmy.ca 1 points 3 days ago (1 children)

There’s also the fact that

  1. It’s only really good at this if you want it to generate Python, PowerShell, bash, or C++ code. Try any other language and it quickly assumes you’re using outdated and often incompatible libraries or doesn’t really understand how the language functions.
  2. at the end of it all, neither you nor the AI has learned anything new; you’ll have to put in the exact same amount of work the next time. If you do it yourself, then over time that 10% advantage goes away.

Now, these things could both change over time, but humans are much more efficient to train than current state of the art probability sieves we call GenAI.

[–] Zexks@lemmy.world -1 points 3 days ago

It's only assuming if you aren't specific enough. And you do know their training is usually a year or two or 3 old. So they don't know about whatever new shit your trying to work with.