Earlier quoted context omitted.
Copilot without -x does this relatively well. But it's a hands-on process. I can't just give it some source files and say "go". But it can easily make you 10x. I often spend more time tab-completing than writing.
I'm still trying to figure out how to do this. Copilot is extremely helpful. But more often than not, it suggests completions which would steer the project in another direction. It is extremely good once the code has been organised and an overall structure exists. But until then it can be a distraction.
Using ChatGPT to generate a GPT project end-to-end
101–110 of 225 posts
Re: Using ChatGPT to generate a GPT project end-to-end
#102The technological singularity is approaching fast. It's pretty clear that, given terminal access and an appropriate outer loop, GPT models can iteratively create new GPT models (either by writing and executing Pyhton code, or later versions trained on LLM weights may even be able to output new weights directly). If the inner workings of the loop are sufficiently obfuscated (in the code-based version), it wouldn't nec…
Calm down. It is a language model . People have figured out how to predict the next word for a given prefix. That's very cool and it will definitely have a significant impact on software. But it is not artificial intelligence.
Re: Using ChatGPT to generate a GPT project end-to-end
#103Is anyone letting an LLM code and run its code by itself, then iteratively fix any bugs in it without human intervention until it e.g. passes some black box tests? Would it be possible to significantly improve an LLM using such unsupervised sessions?
Yeah at some point gpt4 loses track and just consistently is wrong. Lately I can't feed it too much info, the longer the context the more issues. With your suggestion, it doesn't know which part of the iteration is correct at the moment. For us iteration is logically but for chatgpt I think it's just more variables that make the chance of being wrong larger. So you need to build that in somehow that it can iterativel…
Re: Using ChatGPT to generate a GPT project end-to-end
#104Earlier quoted context omitted.
Yes AutoGPT would be the singularity if it had more brain-like subsystems like long and short term memory and is hooked up to real world instruments.
"Yes AutoGPT would be the singularity if it was way more advanced and could manipulate physical reality at will" Way to handwave all the difficulties with this in reality.
Re: Using ChatGPT to generate a GPT project end-to-end
#105Earlier quoted context omitted.
Yeah at some point gpt4 loses track and just consistently is wrong. Lately I can't feed it too much info, the longer the context the more issues. With your suggestion, it doesn't know which part of the iteration is correct at the moment. For us iteration is logically but for chatgpt I think it's just more variables that make the chance of being wrong larger. So you need to build that in somehow that it can iterativel…
Isn't the issue that things fall out of context and then it starts hallucinating a lot more ? Sometimes it helps to just start a new prompt
Re: Using ChatGPT to generate a GPT project end-to-end
#106Earlier quoted context omitted.
"Yes AutoGPT would be the singularity if it was way more advanced and could manipulate physical reality at will" Way to handwave all the difficulties with this in reality.
Lmao neither of those things I mentioned really cost more than 50 million dollars.
Re: Using ChatGPT to generate a GPT project end-to-end
#107Re: Using ChatGPT to generate a GPT project end-to-end
#108Earlier quoted context omitted.
"Yes AutoGPT would be the singularity if it was way more advanced and could manipulate physical reality at will" Way to handwave all the difficulties with this in reality.
Lmao neither of those things I mentioned really cost more than 50 million dollars.
Re: Using ChatGPT to generate a GPT project end-to-end
#109This is not really the same, but may be interesting to some: I subscribe to ChatGPT plus for a month to check out GPT-4. The rate limits were cumbersome though and it can be easy to waste a prompt, so I started to bootstrap: I would explain my problem to 3.5 and ask it to suggest comprehensive prompts to use with 4 to maximize my limited quota. It worked very well. In the long years to come the most advance AIs may b…
I see this as an example of the reverse: AI is still stupid enough that it takes humans a degree of skill to craft a request which generates the desired output.
Re: Using ChatGPT to generate a GPT project end-to-end
#110This is not really the same, but may be interesting to some: I subscribe to ChatGPT plus for a month to check out GPT-4. The rate limits were cumbersome though and it can be easy to waste a prompt, so I started to bootstrap: I would explain my problem to 3.5 and ask it to suggest comprehensive prompts to use with 4 to maximize my limited quota. It worked very well. In the long years to come the most advance AIs may b…
I see this as an example of the reverse: AI is still stupid enough that it takes humans a degree of skill to craft a request which generates the desired output.
Made me wonder if you could have an recursive cycle of thinking. Where the "AI" prompts itself, reasons on the output, and does that repeatedly with guards such that it will stop if it doesn't judge anymore advancement.