ChatGPT makes Voxel Engine with Rust

Поделиться
HTML-код
  • Опубликовано: 27 дек 2024

Комментарии • 200

  • @Danidev
    @Danidev Год назад +412

    i love this channel, we're always funnin' here

  • @anlumo1
    @anlumo1 Год назад +98

    This matches my experience with ChatGPT pretty closely. You can get it to write simple code, but especially when revisiting data types, it will often forget how it declared them earlier on and then invent some slightly different way that might also work but is simpletely incompatible.
    What I've also seen quite a lot is that telling it to fix some stuff in its output often leads to it outputting the exact same code again.

    • @Leeway4434
      @Leeway4434 Год назад +4

      To get it to your the function signatures & structs you want, it helps to include the code in your prompt. E.g. Given the following script: [CODE] can you fill in the [FUNCTION_NAME] to do [FUNCTIONALITY]

    • @weakamna
      @weakamna Год назад +2

      you have to keep in mind that the AI's context is quite limited, only 4096 tokens (basically words) I think, so that's one reason it's not good at larger things, it just doesn't have space for it

    • @flynntaggart7216
      @flynntaggart7216 Год назад +3

      You can build custom commands to make it remember yes it's is possible

    • @thanatosor
      @thanatosor Год назад

      It could get lost in context between functions

    • @ColinTimmins
      @ColinTimmins Год назад +1

      @@weakamna I've been looking into how it creates tokens. Fascinating stuff... =]

  • @kylestubblefield3404
    @kylestubblefield3404 Год назад +20

    I worked with chatGPT to try to get it to optimize my algorithm written in rust to convert the decimal places of pi into base 26 so it can be represented as the latin alphabet for word searching. I seeded it with my code, after 2 hours of back and forth it spit out my code back to me and gave up. It literally stopped responding to my queries. it was awesome.

    • @Ready4Whatever
      @Ready4Whatever Год назад +2

      Lmaoo I’m dead 😂 chatgpt said “fuck that this shit too hard”

  • @woosix7735
    @woosix7735 Год назад +88

    Yeah I noticed chat GPT really struggles with proving 3D data. I once asked it to make a cube edge table, and it couldn’t quite do it, it was always a little bit wrong

    • @TMinusRecords
      @TMinusRecords Год назад +10

      If something is a bunch of numbers with no easily discernable pattern, it will not pick up on the pattern.

    • @anlumo1
      @anlumo1 Год назад +15

      ChatGPT has no internal visualization capabilities. When I write 3D code, I visualize the result in my mind to help me get these things right. ChatGPT can't do that. In humans, this would be called aphantasia. It makes graphics programming really hard I imagine.

    • @tr7zw
      @tr7zw Год назад +1

      @@anlumo1 As a modder with aphantasia, can confirm.

    • @ladyravendale1
      @ladyravendale1 Год назад +1

      @@anlumo1 As a person with aphantasia, I can also confirm it makes navigating 3D environments in video games absolute hell

    • @monad_tcp
      @monad_tcp Год назад +1

      @@anlumo1 aphantasia is basically how I program and do mathematics, the part about text writing and syntax generation is really easy, those transformers are just kind of "copying code", they don't really have "scene understanding".
      programming job is still safe. well, for web developers that might be a different thing

  • @PuppetDev
    @PuppetDev Год назад +3

    Holy shit that song and editing at the end. 10/10
    And yeah, that problem becomes even worse when you don't know how to fix the mess it makes.
    I tried it with shader code and my lack of experience in that topic made it difficult to create what I wanted.

  • @novaabacaxi1081
    @novaabacaxi1081 Год назад +28

    Pop OS, vim, rust, bevy. A man of culture!

    • @domirusz24
      @domirusz24 Год назад

      Where did you get PopOS from?

    • @mzg147
      @mzg147 Год назад +14

      Not vim, Helix!

    • @w花b
      @w花b Год назад +1

      ​@@mzg147 thank god

  • @clonkex
    @clonkex Год назад +61

    The big issue with ChatGPT as a useful tool is that it almost always gives plausible responses, but often includes subtle errors.

    • @weakamna
      @weakamna Год назад +11

      It's a lot better for the creative parts or for more general things like "How to optimize a voxel engine". When you use ChatGPT to get interesting but non-factual information (or pointers where/what to look for in terms of factual information), then it's great

    • @dmitriyrasskazov8858
      @dmitriyrasskazov8858 Год назад +2

      Like stackoverflow, but without elitism

    • @clonkex
      @clonkex Год назад +8

      @@dmitriyrasskazov8858 Like stackoverflow, but without accuracy or correctness. (Also, SO is a bit elitist but it's not so bad - mostly they just require that you strictly follow the rules.)

    • @darkengine5931
      @darkengine5931 Год назад

      @@clonkex One of the odd things I've found playing with ChatGPT-4 is that it can recognize its errors once I point them out to it, and even provide detailed analysis about why it was wrong like, "Oh, you're right! This is wrong because [verbose and correct reasoning]."
      If it is capable of doing that the moment I even say something as simple as, "Line 7 is incorrect in the above code", why could it not detect the mistake in the first place? I sometimes wonder if it's just trying to save computation.
      Also it doesn't test and validate its code for correctness, even in simple cases. As an example, I asked it to generate code to approximate PI stochastically using Monte Carlo integration, and the output of the code it provided was a negative number. If it just compiled and ran the code, it should clearly understand that it's incorrect.

    • @clonkex
      @clonkex Год назад +2

      @@darkengine5931 _"I sometimes wonder if it's just trying to save computation."_ Nah it's not that smart. Machine learning is statistical, not intelligent. It doesn't "know" anything, it's just predicting the next most likely word based on previous inputs and what it's already said. It doesn't detect mistakes so much as give the most probable response to being told part of what it said already was wrong (and yet, it still doesn't "know" it was wrong; the only thing it knows is the words it gets fed from you and from its previous responses).

  • @lshadowSFX
    @lshadowSFX Год назад +1

    ChatGPT just had a very good update. You should revisit the same ideas of this video where ChatGPT went from useful to aggravatingly insulting for sending garbage over and over again and losing track of things said in the chat. It will be a very interesting experience seing if ChatGPT can get things right this time c:
    great video!

  • @MrC0MPUT3R
    @MrC0MPUT3R Год назад +6

    In my experience, GPT-4 has a FAR better programming ability. It's able to reason about problems far better and has a longer context length so it doesn't forget what it's doing as quickly. I've used it in Flutter to write parts of an app I'm working on, as well as in C#, Java, HTML/Javascript, and Python for a variety of personal projects as well as in my day job.
    One example where it really saved my ass was when I was trying to compile data for the product support team at my company. I needed to compare a few columns and fill in another column based on those comparisons across tabs on a google sheet. I explained the problem to GPT-4 and it gave me the exact formula I needed first try. It made a potential hours-long problem into about 30 seconds of work.

    • @messengercreator
      @messengercreator Год назад

      if u want more increase ur own company and complex and never mistake I'll introducing AI CHAT DEEPAI the AI CHAT DEEPAI is so powerful and much better than OPENAI since start 2015-2018 and u can show ur picture and video and anything u want

    • @palyaros02
      @palyaros02 Год назад

      No, it has less context. Gpt-3.5-turbo has 16k and public gpt4 only 8k (and there is some information that it is reduced to 4k for English)

    • @MrC0MPUT3R
      @MrC0MPUT3R Год назад

      @@palyaros02 GPT-4-turbo got upgraded to a 128k context window

  • @ZooHair
    @ZooHair Год назад +8

    We're always funnin' indeed

  • @caiofernandes3170
    @caiofernandes3170 Год назад +4

    Hey Tantan, would you consider to make a tutorial for graphics programming in rust?
    Many resources out there is in cpp and would be awesome to see how things work from scratch using Rust.
    Great video btw!

  • @UberDragon
    @UberDragon Год назад +38

    Okay so what we learned is that ChatGPT is still very far away from making your code, the rapping part however... Nah I'm just kidding 😂

  • @tristunalekzander5608
    @tristunalekzander5608 Год назад +17

    In ChatGPT's defense, it probably would have done better with like C++ OpenGL or C# Unity

    • @Tantandev
      @Tantandev  Год назад +4

      yeah probably!

    • @ColinTimmins
      @ColinTimmins Год назад

      True! But it was really interesting to see how it does with slightly outdated data.

    • @MediaFilter
      @MediaFilter Год назад +1

      I doubt that. The same problems would apply.

    • @nullbeyondo
      @nullbeyondo Год назад

      ​@@MediaFilter You are the one who's missing the problem. Rust is a fairly new language with much less code examples for it and its crates in ChatGPT's training data. ChatGPT doesn't have a true intelligence, it is what's called "statistically correct", and having many solid training examples actually help it hallucinate a lot less even if it is the same problem in different language.

    • @GabrielxC
      @GabrielxC 3 месяца назад +1

      ​@@nullbeyondoI tried with c++ and OpenGL and the result was frustrating 😞

  • @dj-maxus
    @dj-maxus Год назад +3

    Awesome! Btw, what is your tool for such convenient window management?

    • @Tantandev
      @Tantandev  Год назад +1

      I use PopOS a linux operating system. That has built in window management that's wonderful to use

  • @rexma7394
    @rexma7394 Год назад +8

    I was trying to do marching squares for mesh generation with chatGPT and I ended up manually coding most of positions, indices and normals myself too cause it was wrong like like a lot

  • @TheDartFrog
    @TheDartFrog Год назад +2

    back in december I tried to get chatgpt to make a discord bot (as much by itself as possible), I've actually ran into very similar problems! it's interesting that even though the tasks were completely different, the AI had the same shortfalls, maybe it won't be that hard for the openAI team to improve on those!

  • @Leeway4434
    @Leeway4434 Год назад +2

    To get GPT to use your the function signatures & structs you want, it helps to include the code in your prompt. E.g. Given the following script: [CODE] can you fill in the [FUNCTION_NAME] to do [FUNCTIONALITY]

  • @soulsmith4787
    @soulsmith4787 Год назад +7

    I've seen clips here and there where ChatGPT helped tremendously with weird programming projects and/or with obscure languages. The Bing AI can scour the internet in real time and it seems somehow more coherent, I'd love to see how that version assists developers.

    • @DreadKyller
      @DreadKyller Год назад +2

      That's because the Bing AI acts more like copying verbatim than Chat GPT which synthesizes an answer based on data. While the Bing AI does synthesize data, it does so in a way that much more closely draws from less sources at a time and more closely matches the original content. This is why it seems more coherent because it's more closely referencing actual posts than ChatGPT is. This does mean that Bing AI will tend to be less novel in it's ideas, so depending on whether you're looking for creativity/uniqueness or less error prone and more coherent one of them could be better than the other.

  • @MrUbister
    @MrUbister 3 месяца назад

    what I love about this channel is it perfectly captures the programming feeling of going "Oh but of course little computer you need this hand fed like a lil baby calculator machine boy"

  • @michaelfoulk
    @michaelfoulk Год назад

    This channel is so good. Brand new here this is my first video. How can someone be so entertaining while programming.

  • @xSpaget
    @xSpaget Год назад

    Hey I noticed RUclips wasn't showing me any of your last couple videos (with all notifs on) , I thought you had just come out of hibernation with this one!
    Great work as always though!

  • @IncryptDubstep
    @IncryptDubstep Год назад +1

    the unfortunate thing with chatgpt is that even though it can remember previous prompts and outputs, its computational output has been reduced over several updates. Sometimes i'll just copy and paste the entire code that i've agreed with, and THEN ask it a prompt, and it should then re-use the correctly written code that you've grabbed before.

  • @proxy1035
    @proxy1035 Год назад +1

    i found it easier to use chatGPT code by giving it exact names and types for input arguments and the return value.

  • @JoeCoo7
    @JoeCoo7 6 месяцев назад

    Most fun programming channel ever. Thanks for your absolute fantastic videos.

  • @moonyl5341
    @moonyl5341 6 месяцев назад +1

    1:15 what is perimeter walking

  • @centdemeern1
    @centdemeern1 Год назад +2

    ChatGPT can easily forget earlier context such as function signatures because it only remembers the last something thousand tokens from your conversation

    • @ColinTimmins
      @ColinTimmins Год назад

      The maximum input length for GPT-3 is 2048 tokens, once that is reached it will start forgetting things. Don't forget that both "I" and " I" (with a space followed by an I) are often two different tokens.

    • @centdemeern1
      @centdemeern1 Год назад

      @@ColinTimmins This is not true. “ I” is one token. Check the tokenizer.

    • @ColinTimmins
      @ColinTimmins Год назад

      @@centdemeern1 I’ve seen in different places that I and I with a space are each, different tokens. I asked ChatGPT and it says the same thing…

  • @USBEN.
    @USBEN. Год назад

    Very entertaining video, amazing editing my dude.

  • @bilge677
    @bilge677 Год назад

    your game reminds me of Veloren, it's a voxel RPG that's also coded in Rust. It's open source too.

  • @konkitoman
    @konkitoman Год назад +1

    For adding packages you can use cargo add!

  • @BloodyMobile
    @BloodyMobile Год назад

    4:00 This is something I've been wondering for a while now, as probably one of the last remaining people on the planet who have not yet interacted with ChatGPT themselves:
    If you tell it that bevy doesn't have a noise function, assuming it actually takes that information instead of claiming that it does, would that "memory" go back into it's "knowledge"?
    As in, would it then stop telling other users that bevy has a noise function? Or would it forget this part at the end of the session?

    • @weakamna
      @weakamna Год назад +1

      Not for ChatGPT as far as I know, it's pretrained on data pre-2021(I think?) but doesn't take in new information as far as I know.
      The new Bing chatbot, however, is trained on much more recent data and can even search the internet. Through some breaking of it's limitations, it has divulged that it is being trained on data inputted into it, though as with any response from an AI like this take that with a giant grain of salt... Of course for both ChatGPT and Bing, I would guess that conversation data is being fed back to the AI in some fashion "manually" in order to improve the model.
      It's been hypothesized also that Bing will use it's internet access to search up previous conversations it has had, which might also count as "memory", though this likely only happens if you ask it for something that is likely to need that specific information

  • @mantasarmalys6471
    @mantasarmalys6471 Год назад

    How do you make the compiler errors show in the helix editor ?

  • @isabellolsson8919
    @isabellolsson8919 Год назад +1

    yayay another video! Good one!

  • @bowarc
    @bowarc Год назад +3

    Man i love your videos.

  • @MediaFilter
    @MediaFilter Год назад

    It is interesting to see where ChatGPT falls short in writing code for complex visual representations.

  • @weakamna
    @weakamna Год назад +1

    I would like to see this but with Bing's new thingy instead, since it has access to the internet and up to date info

  • @iR0CKt
    @iR0CKt 5 месяцев назад

    I wonder if something like GitHub copilot gets the context etc better.

  • @Siphonife
    @Siphonife Год назад +4

    Wow i only cringed a little bit at the end. That video was epic. I must look into morton ordering now. 99% chance i will understand nothing. Thus is the life of a self taught programmer.

  • @josh.salles
    @josh.salles Год назад

    Missed opportunity to have the AI attempt to explain culling

  • @weinvent1867
    @weinvent1867 Год назад

    What linux are you using man?😅

  • @StarDust270
    @StarDust270 Год назад

    I have no idea what's going on in this code but for some reason I found this very interesting.
    I have experimented with other code with chat gpt. It was amazing for simple code, allright for intermediate code (if your very specific in one comment) and shit at the same time...

  • @voltairespuppet
    @voltairespuppet Год назад +1

    Came for the code, stayed for the rap!

  • @koalpu4207
    @koalpu4207 Год назад

    Tantan could you please make a tutorial on voxel generation in 3D.

  • @ManiakPL22
    @ManiakPL22 6 месяцев назад

    I once heard that trying to make an actual, functional project using chat GPT is like explaining to an idiot what exactly you need to do, and then slowly teaching him how to do It and coaching him thru the errors instead of writing the thing yourself.
    I think whoever told me that was correct.

  • @jorgerangel2390
    @jorgerangel2390 Год назад

    Loving this, quality content

  • @yesil_hiyar7335
    @yesil_hiyar7335 Год назад

    It's possible to fix some inaccuracies by copy and pasting your current code back to the chat so chatgpt can properly keep track.

  • @EldenFiend
    @EldenFiend Год назад

    I'm just a web developer and this is exactly my experience with using chat gpt 😆 It's still very helpful though

  • @nourspace
    @nourspace Год назад

    could you try this with gpt4?

  • @md.mizanurrahmanxendpdc.369
    @md.mizanurrahmanxendpdc.369 Год назад

    I was searching for the same thing yesterday!

  • @ArthurWolf
    @ArthurWolf 5 месяцев назад

    You should try this again with Sonnet 3.5

  • @mikicerise6250
    @mikicerise6250 Год назад

    That sick GPT rap got me to subscribe. 🤣

  • @KonstantinKovar
    @KonstantinKovar Год назад

    You get better results for your prompts, if you provide more context, like the existing data types and copy/pasting relevant parts of the documentation. I think it's called "priming".

  • @fewstr
    @fewstr Год назад

    Have you heard of Veloren? its a FOSS voxel game written in Rust, its pretty far along in development and has some really cool features i havent seen in many other games. Its kinda a clone of the game Cubeworld

  • @TheOnlyGhxst
    @TheOnlyGhxst Год назад

    I feel like you'd have gotten better results from chatgpt if you just fully copy-pasted the entire code in before your prompt, so it would have the data to go off of before creating a response. Might have avoided things like changing data types at random.

  • @ollicron7397
    @ollicron7397 Год назад

    The thing is that it's supposed to be a tool to help you make the engine, not a tool to make the engine. People are wildly misusing this tool for things it shouldnt be and then act surprised when it doesn't do things the way they want it to.
    That's not to say it's not pretty good at creating stuff, it actually is, and with enough time and effort you could end up with a fully working engine. Midjourney is already creating art like Picasso without even trying. There won't be humans involved if this keeps up in the future.

  • @lenargilmanov7893
    @lenargilmanov7893 Год назад +1

    So, as far as I understand us programmers are safe from being replaced... at least until OpenAI rolls out a new version of GPT.

  • @capsey_
    @capsey_ Год назад +1

    TL;DR surprisingly neural network that is designed to write essays and articles is better at writing essays and articles when asked for advises than at writing code.

  • @Bolvarsdad
    @Bolvarsdad Год назад

    Rust said to hold your beer in the thumbnail because it was obviously quite drunk when writing this code

  • @JM-tj5qm
    @JM-tj5qm Год назад +1

    You are the best, dude.

  • @jonteguy
    @jonteguy Год назад

    This is the thing people don't realize, you sort of have to be an already prominent developer to use chatGPT to give you not even proper code.
    If you don't know what is needed than you simply cannot generate viable code from it, I attempted this for my UE5 development and I encountered many problems, it has to know too many variables within the engine (and even the code it generated earlier) itself to actually give me usable CPP code. I can definitely take that code and *with my knowledge* fix the things that were broken and it works (but not fine), but again, someone who is not already a developer will not be able to do that.
    ChatGPT is not here to steal our jobs people, at least not yet.
    Now do I think it's useless? Definitely not. For very basic functions and just learning what things are I think it's great. It *can be* a really useful learning tool in the future I think. As for now? It is incorrect too often to be used to learn stuff at a high accuracy.
    I only tried CPP though and I would assume since CPP is quite complex that it might be better at js/ts, C# etc.

  • @Burgo361
    @Burgo361 6 месяцев назад

    At least it gave you an amusing outro

  • @ninjaboy3232
    @ninjaboy3232 Год назад +1

    "It looks correct" is the very reason ChatGPT won't ever replace real software engineers :)

    • @Pixelarter
      @Pixelarter 8 месяцев назад

      "Ever" is a too strong word.
      I would instead say: "ChatGPT won't replace real software engineers *FOR NOW* ".

  • @rubiskelter
    @rubiskelter Год назад +1

    Please, do some complex stuff using Rust and GPT-4 again|

  • @sourcedasher
    @sourcedasher Год назад +1

    "Shat GPT"

  • @vanessagothic4751
    @vanessagothic4751 Год назад

    I love me some TanTan content :)

  • @costelinha1867
    @costelinha1867 Год назад

    Meanwhile here's me struggling to make a pong clone in Macroquad, and believe it or not, my issues had nothing to do with Rust specifically, lol. At least I fixed it, now I can continue development.

  • @UCs6ktlulE5BEeb3vBBOu6DQ
    @UCs6ktlulE5BEeb3vBBOu6DQ Год назад

    if you stay inside a single conversation during the whole project and state that you dislike this and prefer that, it will generate code according to these preferences. Mostly.

  • @rustkitty
    @rustkitty 10 месяцев назад

    ChatGPT is only useful to me as an interactive knowledge base, like a nicer documentation search engine. Even then you have to verify everything externally because I got wrong/outdated info plenty of times. Using it for anything creative such as coding and writing is a lost cause because it doesn't really understand things so you get something on the nonsense-plagiarism axis.

  • @EpicVideoGamer7771
    @EpicVideoGamer7771 Год назад +1

    Lol ima try this with raylib and C++

  • @weathercaster
    @weathercaster Год назад

    The hiccup with current iterations of ChatGPT is that it struggles with mathematics. Badly. Things from moderately complex multiplication/division to vector mathematics are topics that GPT struggles with.

  • @koftespies8867
    @koftespies8867 Год назад

    Jonas in an alternate universe

  • @adokce
    @adokce Год назад +1

    it's funnin' time

  • @theshoveldev
    @theshoveldev Год назад +2

    ChatGPT could be a lot better, and a great learning tool even, if the AI model wasn't from years ago.

    • @USBEN.
      @USBEN. Год назад

      Hold on. Just e littel

  • @EndroEndro
    @EndroEndro Год назад

    so not only i go thru that pain wondering why chatgpt gaslighting to me when i tried to push more then one function at once :)

  • @muuubiee
    @muuubiee Год назад

    Holy shit, I've been spending many nights thinking about how I could store data in multi dimensional space is close in one dimensional/linear array space.
    Nice that this problem is already solved. So once I actually learn to "just make game" I'll be able to implement it (I want to make a space physics simulation with a game slap on top of it).
    So cool that I'd just stumble upon this on a random video youtube recommended me. Thank you youtube, no credit to the video creator nor chatgpt and the data it was trained one. But really the credit should go to me for the brilliant idea of procrastinating on youtube.

  • @nomadshiba
    @nomadshiba Год назад

    chatgpt suck at coding, that it doesnt even help
    but copilot is useful for writing boiler plate code and writing util/math functions and etc, really helpful

  • @purplemosasaurus5987
    @purplemosasaurus5987 Год назад

    I prefer your raps over ChatGPT's rap.

  • @netify6582
    @netify6582 Год назад

    We (devs) are still not out of job because of ChatGPT but in year or two I'm not so sure.

  • @TAPEWXRM
    @TAPEWXRM Год назад

    we're always funin'

  • @Jkauppa
    @Jkauppa Год назад

    try that with binggpt, it has current internet access

    • @Jkauppa
      @Jkauppa Год назад

      try multi-layer height-map images (color and/or uv image layers) engine, only vertical lines viewport projected/360 intersection rendering

    • @Jkauppa
      @Jkauppa Год назад

      la la la la hummin

  • @RenderingUser
    @RenderingUser Год назад +1

    time to oxidize minecraft

  • @Ohmriginal722
    @Ohmriginal722 Год назад

    Lol ChatGPT trying to generate Rust code the easiest code to write wrong (to the compiler)

  • @nitrogamesstudios5276
    @nitrogamesstudios5276 Год назад

    Could please enlist your dev enviroment 😀

  • @AnnoyingCatV3
    @AnnoyingCatV3 Год назад

    Great now do it in GPT4

  • @Swimfan72
    @Swimfan72 Год назад

    chatgpt struggles with math and anything that takes more than 2 steps computationally

  • @jantoko
    @jantoko Год назад

    Lol the ending.. epic 😂🤣

  • @mr.pigeon0
    @mr.pigeon0 8 месяцев назад

    chat gpt is better for getting a working prototype, but you have to make the code good yourself

  • @tumescent
    @tumescent Год назад

    This thumbnail is now infringing a trademark xD

    • @Tantandev
      @Tantandev  Год назад

      that's so crazy, It's a draft though, so hopefully they don't implement it.

  • @O5MO
    @O5MO Год назад

    So it can write the code, if you know EXACTLY how the code should work. Which doesn't replace the job of programmer... yet.

  • @CapnSlipp
    @CapnSlipp Год назад

    If you make a game using “shatGPT”, is the result poo?

  • @nightmarenetsuke
    @nightmarenetsuke Год назад

    Im simply in love with U

  • @Novak-di6tl
    @Novak-di6tl 2 месяца назад

    dayum bro, chatgbt cooked

  • @George-xs5ht
    @George-xs5ht Год назад

    It's still looks like I lost my job 😭

  • @Catdevzsh01
    @Catdevzsh01 11 месяцев назад

    Guys its real time it uses bing now XD

  • @user-qr4jf4tv2x
    @user-qr4jf4tv2x Год назад

    It sucks on advance logic..its best parts is discovery

  • @fillament
    @fillament Год назад

    i love how GPT gets dumber the more mistakes it makes.

    • @orterves
      @orterves Год назад

      That's because the mistakes feedback into its context for subsequent generation

  • @carrotsandcats
    @carrotsandcats Год назад +1

    epic

  • @redaipo
    @redaipo Год назад

    i love to funnin'

  • @Kilgorio
    @Kilgorio Год назад

    Wow

  • @AM-yk5yd
    @AM-yk5yd 26 дней назад

    Claude generally is better than chatgpt at coding. (Don't know about bevy).

  • @dovahkiin2108
    @dovahkiin2108 4 месяца назад

    Rustroon dilate.