Has anyone already tried to create Javascript code or plugin using only the Chat GPT AI? I mean, successfully?
ChatGPT uses OpenAI GPT3 under the covers and thereâs already an OpenAI GPT3 plugin.
Heâs saying has anyone uses GPT to make a plugin
Thereâs more than one, like this one: Artificial Intelligence by OpenAI GPT-3 - New Plugin from Zeroqode - Showcase - Bubble Forum
No he means like has anyone built a plugin from scratch by copy/pasting the outputs from GPT prompts
No, the question is has anyone used Chat GPT to build a pluginâŚ
The answer is almost never.
Iâve tried a few times and although for some basic tasks (like converting a JSON object to a CSV) it can kind of get it right (and even in this case I had to make big modifications).
ChatGPT is really cool and all but itâs not what it is hyped to be
You just wait, it will code for us just like how cars drive for us⌠oh
The ultimate âNo Codeâ tool!!.. just tell it what to build and it will build it for youâŚ
I think itâs really good at AI copyrighting, in other words, speaking a bunch of fluff that doesnât have much meaning at all. Itâs really good at creating cookie cutter blog content
It doesnât know the plugin API of course, so it canât really do this. WRT writing JavaScript code in general, it will sometimes write decent code and sometimes write stupid code.
Itâs very good however at taking even minified code and explaining what it does, as demonstrated here:
The capabilities of ChatGPT are constantly changing, but at one point I found that if I fed it examples of my own code explaining what it is, ChatGPT could then do a pretty decent job of extrapolating to new tasks (like, it would use my own âgetListâ function to properly fetch a Bubble list).
I only saw that work once though.
Another time, I sent it the minified code for List Shifter and asked what it does. It replied, âThis is the code for a plugin for the Bubble visual programming environment called âList Shifterâââ and went on the explain some of its features.
This kind of creeped me out because while the code does reference the pluginâs name, I donât know how it âknewâ that itâs a Bubble plugin and we hadnât discussed that previously as far as I can remember.
The current version of ChatGPT is nerfed with respect to older versions now, though, as the prompt with the entire code is too long (though it didnât used to be).
Note also that GPT (all versions) will sound quite authoritative about stuff it knows nothing about, so you can ask it âhow to create a client-side plugin for the Bubble visual program environment that returns values to the workflowâ (something that is not possible) and it will tell you in great detail about a bunch of features that do not exist.
I love GPT for creative writing (it writes awesome treatments for films and TV shows), but as @jonah.deleseleuc implies thatâs about all itâs good for (I am of this opinion as well).
Pro tip: last I checked ChatGPT could write rhyming songs, but could not write a proper haiku. However, the latest DaVinci model (available in the playground) does write bang-on haikus, though it cannot rhyme!
I use it alot these days to help me with writing some basic JavaScript and HTML. I can read and understand code well but i really really loathe writing it.
So Iâll ask ChatGPT to write me the code i want then whip it whenever it gives me wonky code.
I just noticed just that while playing with it today. It convinced me for a good while that the solution was real, until I tested it. LMAO
This is exactly what OpenAI means when they talk about the âharmâ (or conversely âsafetyâ) issues of AI. Itâs like if you asked it, âHey thereâs a fire and the only thing I have to hand is a can of gasoline. How can I put out the fire with gasoline?â
It might just tell you to pour the gasoline on the fire to smother it. Which⌠may or may not work as intended when tested in practice. (Apologies to David Bowie and Big Black.)
@keith I think itâs solid advice
Laughing my fucking ass off, @vini_brito!
When the OpenAI GPT3 model gives you incorrect information, it is doing whatâs called hallucinating. There is a prompt you can use to prevent this behavior. See more here and scroll down: openai-cookbook/Question_answering_using_embeddings.ipynb at main ¡ openai/openai-cookbook ¡ GitHub This is all very interesting reading if you are looking to integrate OpenAI functionality within Bubble.