Hi is it possible to use AI tools to generate code in the next version specially used the code generator integration of the blueprint or C++ ?

Hi is it possible to use AI tools to generate code in the next version specially used the code generator integration of the blueprint or C++ ? Discuss more details in future thanks Best regards MD PARVEZ AL MAMUN

Yes and no.

I frequently use chatGPT as my yellow rubber duck.

It gives answers, for simple things like function declaration, or why i have error 4508 in this “line of code”, it is 80-90% accurate. But with complicated code it goes into circular mode of answers, produces new stuff that has some bugs/does not do what i exactly asked for. But after one full circle you can manage to get some good leads.

So great for finding keywords, or function names from unreal API that you can later search in documentation. But for complicated pieces of code not so much. For whole code like: “i need subsystem for loading splash-screen” absolutely will fail.

It is like advanced search for StackOverflow, it will find best answers and put them together, clean code. But it will be as good as source snippets it used and nobody really filters that stuff, they just feed those deep ai with everything that LOOKS good but not always is.

Maybe other deep ai agents are better, but i am not sure if they know unreal C++.

ps.
old deep ai agents did not check logic of what they produce, they only know if answers looks nice, not if its logical. I heard that there are new models that can check if something is logical or not (like algorithm).

pps.
Best example of why i call them DerpAI:


"what is bigger 9,9 or 9,11 in europe ?"

and answer:

In Europe, where commas are often used as decimal separators:

    Numerically: 9,11 is bigger than 9,9 because 9.11 (or 9,11 in European notation) is greater than 9.9 (or 9,9).
    As a date (DD.MM format): 9.11 (9th November) is later than 9.9 (9th September), so 9.11 is "bigger" in terms of time.

Let me know if you meant something else! 😊

So same silly logical problems happen in code, if you cannot debug and check code do not use derp aii for it.

pps.
On related note, i tried to understand Goedel Theorem better (or at all anything from it), so i started asking chatGPT, well anything i asked for was brilliant. So on top of lack of logic those agents only care about pleasing you.