|
|
|
|
|
by DeathArrow
598 days ago
|
|
Yes, it works for new code and simple cases. If you have large code bases, it doesn't have the context and you have to baby it, telling which files and functions it should look into before attempting to write something. That takes a lot of time. Yes, it can do simple tasks, like you said, writing a call to get the environment variables. But imagine you work on a basket calculation service, where you have base item prices, where you have to apply some discounts based on some complicated rules, you have to add various kinds of taxes for various countries in the world and you have to use a different number of decimals for each country. Each of your classes calls 5 to 6 other classes, all with a lot of business logic behind. Besides that, you also make lots of API calls to other services. What will the AI do for you? Nothing, it will just help you write one liners to parse or split strings. For everything else it lacks context. |
|