|
|
|
|
|
by hayksaakian
1106 days ago
|
|
to back up the author: I'll use ChatGPT with the GPT4 model and it mostly just works by simply asking it to do what I want, the same way I might ask another person. The main constraints I see right now are around 1) complex projects that don't fit into the token context, and 2) keeping up a "base prompt background info" to describe the general purpose of your program and the technical stack. Issues I've run into: 1) Sometimes it will do things in a "bad" style and you need to correct it. For example overusing callbacks in code that should use async/await. for JavaScript. 2) Subtle errors around types that the vs code compiler can catch and enable you to fix 3) It doesn't seem to consider execution time, so I've seen it produce wildly inefficient code |
|