Github Copilot is a great tool for leveraging GPTs while coding, but I find that it is too “open loop” for more complex tasks that require Q&A, feedback to guide it in a particular direction, iteration on code execution errors, etc. There is a large class of tasks that are better accomplished in an iterative, stateful chat-like interface.<p>I have been experimenting with a local command line chat interface to GPT-4 and my mind was blown once again a few days ago when I copied documentation for a pretty involved API into the model context and managed to chat-guide GPT-4 to implement the API in under 30 minutes, complete with a ridiculous amount of unit test coverage.<p>This involved a lot of manual copy and pasting back and forth and other friction points that could be removed by a streamlined REPL interface optimized for code interactions. It occurred to me that it would be fun to build such a tool, and as the ultimate act of dogfooding, try to build it with GPT!<p>So PAIR is the starting point here. You can see a recent commit message has a log of my interactions with the model that produced that commit.<p>Next step is to add better mechanisms to manage the model input context (e.g. make it easy for the model to see the latest version of a source file when needed) followed by mechanisms for allowing the model to suggest changes via diffs that are quickly reviewed and accepted by the human in the loop before being applied to the file and tested.<p>I would love to hear from others who have experimented with GPT pair programming in a chat-style interface and any feedback you might have on your experience with it.
Add a command to pair using pair. I just chatted with pair to add a /cd command. It starts with explaining the the code I was loading (pair.py) which was helpful. It helped me to write the code, can show the diff of changes.<p>I tested the code and find an issue, chatting with it and it fixed it.
I like the work flow of chatting, and asking questions related to it while coding.
Were you able to get the diff to work with GPT 3.5? It kept giving me incorrect line numbers. Not sure if I was doing something wrong or if I need GPT-4 for that.
Here is a video for live action: <a href="https://s3.amazonaws.com/appforest_uf/f1679452821813x808636559172451300/pair2.gif" rel="nofollow">https://s3.amazonaws.com/appforest_uf/f1679452821813x8086365...</a>
I have a hosted system that is so what similar at <a href="https://aidev.codes" rel="nofollow">https://aidev.codes</a>. It will create, edit, host files/web pages.