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.

