TL;DR
What about embedding your whole repository and ask GPT to modify a part of it, reflecting changes each time?
Is there already a repo for doing it?
**I searched auto-gpt, but it is just automating the whole code generation process. It just spits out the final result, while I need to tweak and modify the direction step by step as most of the time what two thinks are different.
LLM like chat GPT 4 is really helping me produce useful apps for me. Although there is enough of GPT-is-a-game-changer codes and mini apps, it won't be a problem as long as I use it for me and my neighbors. One such app is my online short survey.
However I only can ask him a new code to add. It lacks ability to do mainly two things:
- modify a specific part of code.
Oftentimes you write a dummy console.log(x) in your functions first and then replace them after you confirm the logic of the block works.
- understand the relationship between components.
Coding is not translated to single thread of conversation, but it is the inter-connected multi threads improvements for each functionality or component. Especially asking about react code, he want to use as many useEffects as he can.
Given that we can ask GPT based on a document, how can we tell him to search through my repository before output the modified version of codes, which change every time after each conversation. Code repository has more frequent change than company docs, and only the most recent one matters.
Everybody must think of them at least once. Tell me the projects dealing with this problem. Thanks in advance.