How To Build Your Own AI With ChatGPT API

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

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

  • @StefanoV827
    @StefanoV827 Год назад +131

    To make it remember previous messages, just save every input and output and place it inside the message array, being sure to separate your messages with "user" role, and the ChatGpt answers with "assistant" role. That's it guys

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

      Great tip, thank you!

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

      So what your saying is..
      If I do this and place the entire program into a digital monster....
      ...I can finally make a Digimon?

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

      @@marshallcraft2819 😂😂😂

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

      @@StefanoV827 If you give it the fact that it have to imporsonate agumon I think you can get pretty close

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

      I need to make it remember previous messages. I can't understand how do I save every input and output and place it inside the message array. Can you please tell me or give me the source code for me

  • @NubeBuster
    @NubeBuster Год назад +25

    Thanks for this simple guide on how to access the chatgpt api. You can ignore other commenters complaining. It's a good video and the title is fine.

  • @asivak
    @asivak Год назад +56

    Very important question that I was waiting for the whole video: How can I train my own chatbot on my own data, so that the chatbot will answer with knowledge of a lot of context? And how much data can I put in this message array? Because with ChatGPT-3, if you give it even a small amount of information, it may not remember what we started with and give inaccurate responses.

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

      +1

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

      @@vikram2105
      Short answer:
      There are limited ways to do it, it's not straightforward.
      Long answer:
      I have been trying to figure this out myself for the last couple weeks.
      The simplest and most intuitive way to feed it information is: tell it the information in a prompt. Obviously, this isn't a real solution, because the size of individual messages is limited, overall memory of a conversation is limited, and keeping the bot up to date with the latest changes in a database would be a nightmare.
      ChatGPT has an API called Embeddings which can be used to feed training data. It also requires what's called a 'vector database', you can't simply use a SQL database or something similar. This involves breaking down a dataset into chunks creating an embedding vector for each chunk. The official ChatGPT docs have a tutuorial of sorts, which involves scraping data from a site and feeding the data into the ChatGPT Embeddings API
      platform.openai.com/docs/tutorials/web-qa-embeddings
      github.com/openai/openai-cookbook/blob/main/examples/Question_answering_using_embeddings.ipynb
      The closest thing I've found to a real solution for using a constantly changing data source like a SQL database is a tool called Llama-Index. Per the docs: "LlamaIndex (GPT Index) is a project that provides a central interface to connect your LLM's with external data." Looks like it can integrate with tons of different sources, SQL databases, ElasticSearch, Notion, Obsidian, and lots more. Unfortunately it appears there's only a Python library currently. I'm keeping an eye on it for updates, or alternate solutions.
      llamahub.ai/
      gpt-index.readthedocs.io/en/latest/

    • @christiangrothe8888
      @christiangrothe8888 Год назад +9

      why dont you ask chat gpt itself? :P

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

      For this you should fine tune gpt 3 models.

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

      Exactly... I implemented this thing two weeks ago, but a way to train it to use only specific website and train it to answer questions certain way, to actually use my own data? Seems impossible at this point. They offer some payed services to do this, but there is no way you can tell if they aren't collecting your data and publishing them somewhere... unless you are developing it, you really can't customize it in any way. I mean, I wanted to train my own fuzzy logic model to create Beat Saber levels year ago, now with this, I'm thinking solution might be in reach, but turns out it's just barely out of it and seems it always will be... all this big talk about AI and yet, you cannot really do anything but ask chatbot about things on internet, or create images...
      Hopefuly I'm totally wrong in 2 weeks from now on :)

  • @piddy1235
    @piddy1235 10 месяцев назад +1

    00:02 OpenAI has expanded upon their API to include ChatGPT, allowing you to integrate AI into your own applications.
    01:21 Create a secret key for ChatGPT API
    02:33 Setting up configuration for a simple node terminal application
    03:47 Setting up OpenAI for chat related tasks
    05:00 Sending messages from user role
    06:14 Using ChatGPT to generate AI responses and handling message content
    07:31 Creating user interface prompts and listeners.
    08:41 Using ChatGPT API to build a chat-related AI.
    Crafted by Merlin AI.

  • @Simon-yf7fo
    @Simon-yf7fo Год назад +454

    This title is just misleading and wrong. You don‘t build an AI you just integrate one.

    • @btat16
      @btat16 Год назад +73

      To be fair, ChatGPT isn't the AI itself. GPT3 is. ChatGPT is simply an integration of GPT3.
      Clickbaity? Yes, that's how most RUclipsrs survive.
      False/misleading? No.
      Edit: this comment is wrong. Leaving it up as a reminder of my shame

    • @KeenanBernard
      @KeenanBernard Год назад +5

      @@btat16 exactly lol

    • @Simon-yf7fo
      @Simon-yf7fo Год назад +18

      @@btat16 he still isn‘t building an AI. It doesn’t even matter if the AI is GPT-3 or if the AI is ChatGPT he is still just integrating an existing AI.

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

      @@Simon-yf7fo Thought you'd say that. It boils down to how you define "build".
      When someone says "they built a website using Wix/WordPress/Webflow", did they "build" a site despite them not actually "building" the components of a website (the HTML, CSS, JSS, etc.)?
      The end result is a website, despite them using a service that handles the groundwork of the product.
      Edit: to clarify before the ackchuallies get me, I mean basic WordPress themes with only drag and drop as well as Webflow with its most basic functionalities

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

      you're exactly right on that.

  • @pgill18
    @pgill18 Год назад +49

    Current version of openai has a changed since this video. Here's the code that works now (Oct 2023):
    import { config } from 'dotenv'
    config()
    import { OpenAI } from 'openai'
    const openai = new OpenAI( { apiKey: process.env.API_KEY } );
    openai.chat.completions.create({
    model: "gpt-3.5-turbo",
    messages: [
    { role: "user", content: "Hello ChatGPT" }
    ]
    }).then(res => {
    console.log(res)
    res.choices.forEach( out => console.log(out.message) );
    });

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

    I dunno how i finded you, you deserve more visits.. ill be tuning !! subscribed

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

    This is the essential tutorial on setting up your first basic ChatGPT bot.

  • @toskr-r4t
    @toskr-r4t Год назад +18

    Short, sharp and to the point as always. Great video.

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

    how to pre-train it with our own info..like our own company info or product ?

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

    GPT-4 is out, but you have to sign up for the waitlist. FYI for anyone that wants the absolute most up to date. It's significantly more expensive per call though (but still quite cheap overall).

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

      You just have to pay for a subscription I use it now

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

      Yeah there's no waitlist. I purchased it and its great but not a huge difference between gpt 3.5 for me as a regular person.

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

      @@vusiliyK pretty sure you still have to wait to be added to the list even if you pay.

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

      @@brymstoner Exactly

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

    dude, this is amazing. thank you. i was looking for something like this for hours

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

    Short and Precise thanks as always Kyle.

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

    Thanks Kyle -- This was just what I needed to take the first few steps to doing something useful with ChatGPT

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

    Awesome: thanks Kyle! So instead of fearing being replaced, we'll have an edge and we'll be able to use our programming skills to use this AI in a way that regulars users who can't program can't do. Happy coding AIs :D

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

    my brain has never been so confused and understanding at the same time

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

    Thanks for this video! I was able to get a quick bot up and running, with a continuous conversation! This was the perfect starting point I needed.

  • @neilmerchant5228
    @neilmerchant5228 Год назад +23

    I love your channel Kyle. This video felt a bit lacking though. I would love to see a video showcasing the API being implemented for some kind of basic real-world use case. An example of how to use the Fine-tuning or Embeddings API and feed training data in to tailor the bot to the specific use case would be fantastic.

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

      I wouldn't beat Kyle up too much. Chat GPT is brand new and hot but he's got other things on his plate. I assume he released this snack to help us out with a quick overview and will almost certainly have a deeper dive at a later date. However, if you follow his channel you are probably competent enough to implement UI/UX via React, PHP, etc. Reference the docs and give it a shot!

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

      Leave that to the channels that specialize in ChatGPT/AI architectures, this is a good primer as are all of Kyle's videos basically showcasing the tech to beginners and intermediate programmers who might be afraid of this new tech.

    • @itsabhiyan
      @itsabhiyan Год назад +5

      He doesn't have to give everything on your plate. He has guided us to how to use the API, and we are the ones who think of the real world use cases. I actually PREFER this type of content.

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

      I agree- this tutorial was as useless as your average Canadian. It supplied nothing of use whatsoever.

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

      or just be thankful for his effort of making videos.

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

    Thank you Kyle, you always make stuff so much easier to understand❤

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

    Nice tutorial!
    But, I get **Too many requests** error when executing the script and a "hello, what functions can I do?"

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

      did u fix it?

  • @marouaniAymen
    @marouaniAymen Месяц назад

    Thanks for the video, but how can I have an offline AI that I did I train and in local without calling a remote server ?

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

    Very helpful, I modified this a bit to allow for adding multiple lines of text for the input and submitted the request only when pressing enter 2x. Thanks for sharing!!

  • @Sankaritarina89
    @Sankaritarina89 Год назад +5

    One question: on chatGPT website there are those separate chats where the ai can understand what was asked before, no? Is that possible when using the API? Since each API call seems to be a separate "chat", No?

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

      The message in the request parameter of the turbo interface is an array, which means that if you want it to remember the above, you can store the above information in the array

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

      @@codeacme17 But most important is how much data you can put there? (I mean in message array

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

      @@asivak The Chat GPT model has a 4092 token limit so whatever the size of the array it should be fine, but it will only take into account the n last messages depending on its token limit

  • @Ameersoccerdev
    @Ameersoccerdev Год назад +9

    Will gpt4 replace frontend developer should we learn frontend development in 2033??

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

      Hi! I am also worried about it

    • @VimalKumar-ts7xn
      @VimalKumar-ts7xn Год назад +19

      yes if future frontend devs keep searching this stupid stuff, and not focusing on actually learinng anything,

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

      not gonna only be fe, but all the other programming language as well

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

      @@VimalKumar-ts7xn Yes sir.

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

      FE is the first to go, at least big chunks of it. AI already demonstrated the ability to create UI with html, css and js based on a simple picture. Simpler backends are also gone. Anything that is simple CRUD or a variation of CRUD can already be done with AI (although you don't need AI for this, BaaS does this already). What AI is gonna have problems with and will need more time is complex business logic and domain knowledge. But it will get there eventually. Big part of DevOps is also gone. AI can already write IAC for AWS, Azure, GCP or any other cloud provider. AI can already write any terminal/shell script you can think of.

  • @pingu_..
    @pingu_.. Год назад +1

    Why does the it say that the requested module 'openai' does not provide an export named 'Configuration' ????

    • @Mr-gi9rq
      @Mr-gi9rq Год назад

      Same problem, did you find any solution

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

    thanks kyle, i was looking for something on open ai you explained so well loved it

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

    One question, in a recent Microsoft 365 demo they showed that in PowerPoint you can ask in a chat to review a word file and create a presentation for it with animation. I get the chat feature you just demonstrated, but how do you tell it to scan your DB, files and images on the server and perform an action on the website, like Microsoft is doing with MS Office, or Google is doing with their Workspace or khan Academy with their website? Because that's a game changer. Have you seen those videos that just came out a day ago?

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

      I saw the Microsoft video and it was AMAZING

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

      I'm guessing since MS can access files and read it on your behalf, it reads the content, and sends it to gpt, and using that, it returns some results

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

    This wouldn't be conversational though right? Each prompt would create a new conversation with no knowledge of the previous messages?

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

    So do you write your own rules for your own version of chat gpt or did you only integrate a watered down version of the original chat gpt for your own use?

  • @BheesettyShashankSuryaKiranScs
    @BheesettyShashankSuryaKiranScs 7 месяцев назад

    thanks for the tutorial. I am trying to integrate ChatGPT with my Google Assistant Speaker. Is there anyway we could use this for that? Thanks

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

    Hey Kyle, I want to fine tune chatgpt assistant using prompt engineering and refine it to analyze a text and provide the desired output. If I use API chat completion as shared by above, how do I ensure that it is reusable by any other team mate in my team? Will it remember the prompt engineering tuning I had done?

  • @raj.blazers
    @raj.blazers Год назад +2

    Hi, What kind of chatbot UI could be developed that is framework agnostic? I want to use the UI with gpt3 apis running in some python or node backend.
    I want to plug and play this chatbot UI which can be integrated in a react and vue app seperately

  • @multiversegamer8838
    @multiversegamer8838 2 месяца назад

    to run this program what extention do we need to download here ?

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

    Brilliant video. Gets you up and running in time!

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

    I did this and integrated it with AWS for speech, and linked a bunch of Google API services in.

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

    hi, how do u set if the api uses gpt3.5 or gpt 4 ? there is no setting when you generate the key as far as I can see... please help. cheers

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

    Hi Kyle, does the backend LLM store any information while using this API?

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

    Thanks Kyle, can you explain how we can use a custom information using that as a base information it gives the output?

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

    Big fan of your content❤💕💕

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

    Thanks, this is a great guide to start building an AI project

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

    When you integrate the chatbot from openai, will it be tied to it by any means of policy, monetization or data transfer, or will this one you personally integrate is totally isolated on your local machine and can do almost anything you want with it?

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

    1:57 how can i open it?

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

    why iam not getting correct answet it gives some python code some times

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

    I love it! Just subscribed...

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

    thanks for the video, is it possible to integrate all the features of chat gpt 4 into your application ? e.g. transcribing a conversation into crm to check customer service quality ?

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

    Is there a way to use my own dataset to make a gpt version for my use case ?

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

    When using the API, I guess all prompts will still be used as training data, right? Can you even do something to keep your input confidential?

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

    I am getting the error that openai.createChatCompletion is not a function. I guess the docs have changed? I am trying to find the correct syntax to use.

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

    here 👑, you dropped this

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

    Awesome! Thanks. I have a question please.
    I have a list of names of like the president of all countries in the world and I would to use ChatGPT API to read the list and generate few details about these presidents like, (1) About the president, (2) 1 inspiration quote from the president and (3) Why he/she made the quote. I want results to be populated on a page called results.html
    How do I achieve these with this tutorial? Thank you.

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

    This is amazing. Thank you Kyle!

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

    Exactly what I need! Thank you!

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

    Is there a problem with the API? I just used it for the first time ever and got this error in the response
    error: {
    message: 'You exceeded your current quota, please check your plan and billing details.',
    }
    does anyone find out how it works?

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

      I have same problem. im not sure if it has to be paid. Please if you solved it could you tell me how ?

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

      @@JustinVein not yet lol i dove into a website project so i litterally let it down.. i promise i'd let you know if i find it out

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

    Probably the API was update and this code doesn't work anymore...

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

      yeah it was updated. The docs have been updated also

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

    I am a beginner
    When using gpt chat, do I have to get the API from it, or can I get it from anywhere?

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

    what's good, Kyle? was just wondering how can I make GPT answer the user prompt under a role given by a dev prompt? "u are an engineer focused on 2floor buildings" for example and then give out some data the model can use to better answer the questions/prompts from the user. do u understand?

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

    Hello! I enjoyed watching your video. I have a few questions about the pricing of training. When should we train the API? And how often should we train it?
    Thank you for your time.

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

    What I'm looking for is an API web browser plug in to pull real stock data so I can give chatGPT the up
    to date data to work on my prompts ,any help on this ? Thanks

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

    How do we use it for our own datasets?

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

    Hello. I am trying to integrate ChatGPT with TextDrip and Acuity. Would I follow this same process to have ChatGPT to respond to Yes responses from TextDrip campaigns and guide them towards making an appointment in Acuity?

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

    Great example of simple use case. However is it possible yet to point the LLM as an interface to your own or a specific knowledge base of content to be an interface for? An example somewhere was using the tax laws as a prescribed knowledge base and askin the LLM to perform tasks based on that. IS this possible yet as an extension of this example?

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

    hi kyle, thank you so much for this video. but do you know how to stream the response? so it keeps popping up instead of showing up all at once

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

    Genuine Question though, how does he know that syntax, like is it practice or did he look it up and tried different methods before and then he does it all fast cause he was prepared, because I am a second year in uni and dont understand how come you know this lol

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

    Your using a Linux base application to run your commands?

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

    Looking for something like this but more explanation. Immediately got an error trying to use node.js.
    I'm super stoked to start playing around with the api but I need a little more detail. Do y'all have any ideas?

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

    This is showing this error
    message: 'You exceeded your current quota, please check your plan and billing details.',
    I have never used this API before still it is showing that you have exceeded your quota. How can i resolve it ? Please do answer Sir

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

      SAME! Did you find any solution?

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

      As far as I know, it's been made pay-to-use without minimum trial credit provided to us. I attended an online session to learn to build apps with chatGPT API 2 weeks ago and everyone complained about the same. I'm not sure when the change was made exactly but it's not free any more.

  • @tempermode
    @tempermode 7 месяцев назад +3

    I'm afraid the information in it is no longer accurate. Might want to go check out a newer tutorial.

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

    I cant use npn init -y. VSCode says its unknown, why is that?

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

    Tip for anyone trying this and failing. I was getting an error: "You exceeded your current quota...". Turns out you need to add your credit card info and then wait 15 or so minutes before making API calls. It was driving me nuts since I thought I was doing something wrong.

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

      I don't have one, I am 16 :(

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

      Has your credit card been charged as per usage?

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

      @@hadeebataj2137 I only used $0.02 worth but it charged me $6.00 to top up my credits.

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

    Hi is there anyway to build our own ChatGPT AI using JavaScript for fun? thanks

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

    You are absolute legend my friend :-0

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

    I love jackson guitars! great video too!

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

    data: {
    error: {
    message: 'You exceeded your current quota, please check your plan and billing details.',
    type: 'insufficient_quota',
    param: null,
    code: null
    it showing me this error even i did not use api once and i did not ger any free trial amount that you showing you get

    • @MoneyMitch-AceDuece
      @MoneyMitch-AceDuece Год назад +1

      me too

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

      Same was the case for me when i was trying it a long back, i switched to another service called chatSonic, you can go for any service of your own choice

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

      Better put in some quarters 😂

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

    can you do this in Python instead of Java?

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

    Is that a Jackson guitar in the back ground

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

    Does it remember what you said earlier in the conversation?

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

    how should i fix this error
    The requested module 'openai' does not provide an export named 'Configuration'

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

    But how do I make the chat continuous? So it remembers what I posted before.

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

    Maybe it's a dumb question, but is there a tutorial on how to set up the correct programs? Because I keep getting errors like "MODULE_NOT_FOUND". Sounds like I don't have the same setup as you...

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

      coz openai has there own library form where you can use all there tools

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

    HI man, nice one👍, just got 1 tiny question: is there a way we can show code block rather than text?

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

    Thats great.Thanks for sharing useful information

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

    I just signed up today and it says I have completed my quota :/

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

    it's beautiful. if it wasn't paid api i definitely will integrate it.

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

    This is my first video I've ever watched to do with coding, one question, whats the point of doing all that coding to allow yourself to talk to gpt when you could go onto the website and talk from there? Someone please enlighten me

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

    What terminal is he using?

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

    how do i open the terminal to run $ npm init -y?

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

    I think the gpt-3.5-turbo model doesnt work anymore, text-davinci-003 and others work

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

    Is this will rendre response more faster then in chatGTP website? Then it is worth to develop one in local

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

      use stream model,faster

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

      @@codeacme17 thanks, stream model? What that's about? Version payante ?

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

    How would you deploy it?

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

    The main thing that resonates with me about ChatGPT is its conversational abilities. It can convey information in a conversational way. Other than that, it doesn’t seem like much more than a search engine with conversational abilities. And what value is there in just giving users the ability to search from a search engine? We’ve had that ability for about 30 years now.

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

      I find the former to be incredibly useful. It isn't a thinking being but it parses like one. It also has a built-in broad perspective because no human being has ever been made aware of everything ever.

    • @Bobby-sm3sy
      @Bobby-sm3sy Год назад +1

      I think of ChatGPT the same way, and I would add that the value using it over the search engine is that it filters through all of the results for me and returns the most relevant information. Most of the time, anyways. Sometimes it's a waste of time for more complex queries. For simple and more direct queries, sometimes it even interprets the information and returns it in a usable form specific for my use case.

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

      Using traditional search engines to look for a recipe is a perfect illustration of how chatGPT search is better. I don't want to have to wade through a keyword stuffed, ad rittled 1000 word essay on the history of porkchops just to find a recipe. But that's what it takes to rank on the first page of Google right now.

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

      Other than that, ChatGPT explains things really well and you can even refer to specific parts of your own code, which can be painful to do with a common search engine.

  • @AdarshSingh-vt4kw
    @AdarshSingh-vt4kw Год назад

    it is giving error code 429 max limit reached..please help

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

    I want to copy it step by step but in the first step im doomed. How to make file like that, the .env?

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

    using the openai api now counts as building your own AI aight

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

    how to open terminal like that?

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

    Gpt4 api is out why not implement that

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

    Thanks Kyle! 👍

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

    One of an awesome video i have ever seen in my life till now.

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

    Any API to train my own model ?

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

    i am having problem to implement it my website
    may someone help me please?

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

    I get an "npm ERR!" in the terminal when I tried doing npm run dev despite me having changed the "dev": "node script.js". Am I missing something?
    I know basic coding, fyi, but after assigning variables and doing very basic programming stuff (very basic), I don't know much. I intend to utilize GPT to help me learn, though. I've already built several small applications in GPT-4 and 3.5 that function.
    Any help is appreciated!
    I opened the debug and found it saying "Missing script: "dev".
    omg you know what? I think I forgot to save the package.json. Let me do that and check. AHAHAHA. That would be funny. :P