That being said, I am still guiding it on a regular basis and only recently let it run open ended trying fixing small to medium size bugs. The next stage will be try let it run in a loop trying to fix the 100 issues it has identified as well as getting most of the bash test suite to pass.
What's the largest software project AI can complete on its own?
11–20 of 110 posts
Re: What's the largest software project AI can complete on its own?
#12This solution should look for more problems.
Re: What's the largest software project AI can complete on its own?
#13I'm curious about that too. I'm building a language with AI, and when I leave the AI running on its own, it keeps generating code in strange directions. I wonder what kind of structure AI-only code would have.
It's decent at design and implementation, but strangely terrible at language consistency - and expectedly architecture.
Steering it on language consistency is easy. Steering it on architecture has required me to learn a lot more about compilers than I wanted to do for this project (since that's a lot more than I wanted to take on for something that was supposed to be a "fun" "side" project).
Re: What's the largest software project AI can complete on its own?
#14I believe they can make ANY software project the largest it can be! This solution should look for more problems.
Re: What's the largest software project AI can complete on its own?
#15Earlier quoted context omitted.
How would 100% non-human code possibly be safer?
well if driving is supposedly safer when automated, why not code
Re: What's the largest software project AI can complete on its own?
#16Running a Loop on the well defined goal seems promising: https://www.youtube.com/shorts/EtxdB7gpFqY
It's impressive AI can put together it's own version, but I can't help but feel it's probably just relying on existing excel clones as it's a well trodden space.
Novel applications are what impress me. Not a clone.
Re: What's the largest software project AI can complete on its own?
#17Re: What's the largest software project AI can complete on its own?
#18Re: What's the largest software project AI can complete on its own?
#19Earlier quoted context omitted.
How would 100% non-human code possibly be safer?
well if driving is supposedly safer when automated, why not code
Re: What's the largest software project AI can complete on its own?
#20I'm curious about that too. I'm building a language with AI, and when I leave the AI running on its own, it keeps generating code in strange directions. I wonder what kind of structure AI-only code would have.
Also building a language with AI. It's decent at design and implementation, but strangely terrible at language consistency - and expectedly architecture. Steering it on language consistency is easy. Steering it on architecture has required me to learn a lot more about compilers than I wanted to do for this project (since that's a lot more than I wanted to take on for something that was supposed to be a "fun" "side" p…
I'm not sure about architecture. When I first implemented the slot system in my language, I designed it around that implementation, and in the end, the architecture suffered. There were quite a few cases where consistency was simply unavoidable.
It's not easy to create a completely new architecture with something that doesn't exist in existing languages. Consistency doesn't come together as easily as you'd think.
In that sense, I really admire the people who first introduced something new.
When I started implementing it, I focused on one killer feature and just went for it—with the feeling that if this succeeds, my language will succeed. But once I started building around it, it turned out to be very different from other compiler architectures.
With CRUD or other well-established domains, it's easier to maintain consistency. But achieving internal consistency in a program seems to be a different kind of challenge.