Been playing around with AI for a while now, you find little things that seem odd but work out better.
Latest thing - telling the AI to avoid using avoidable libraries - meaning if I need a single function from a library, just write the code for it, don't link in a whole library.
Most libraries cover every possible error condition that can happen - great if you use all the library - but it's just bloat if you use one function.
Seems to be working fine as the AI already know the innards of a library, so can just take the part you need and create that - less bloat.
Latest thing - telling the AI to avoid using avoidable libraries - meaning if I need a single function from a library, just write the code for it, don't link in a whole library.
Most libraries cover every possible error condition that can happen - great if you use all the library - but it's just bloat if you use one function.
Seems to be working fine as the AI already know the innards of a library, so can just take the part you need and create that - less bloat.