background top icon
background center wave icon
background filled rhombus icon
background two lines icon
background stroke rhombus icon

Download "How to Integrate OpenAI's ChatGPT on VS Code for Lightning-Fast Development⚡"

input logo icon
Video tags
|

Video tags

chat gpt
chatgpt
artificial intelligence
machine learning
chatgpt examples
chatgpt tutorial
chatgpt how to
chat gpt tutorial
chat gpt how to use
the chatgpter
open ai chat gpt
how to use chat gpt
open ai
chatgpt bing
openai
chatgpt on vscode
chapgpt for coding
chatgpt vscode extension
chat gpt and developers
chat gpt for development
chatgpttutorial
Subtitles
|

Subtitles

subtitles menu arrow
  • ruRussian
Download
00:00:02
help us to create code fix bugs add
00:00:06
comments to our code Optimizer code and
00:00:09
much more be welcome to the shares
00:00:11
repeat your channel where you'll learn
00:00:13
tips tutorials and know the latest news
00:00:16
about shared GPT let's get started by
00:00:19
integrating shared GPT on vs code for
00:00:23
that we'll install an extension so here
00:00:27
on extensions let's search for share GPT
00:00:30
and let's install the most popular one
00:00:33
made by Ali so let's install this
00:00:38
extension and this extension will
00:00:41
integrate share CPT directly here on vs
00:00:45
code and it comes with great features to
00:00:48
facilitate the use of shares GPT on
00:00:51
development
00:00:53
so we have the extension installed so
00:00:57
here let's click on extension icon to
00:01:00
open the shared GPT and first we have
00:01:03
trotted the cave in order to use chat
00:01:05
CPT here on vs code so let's click here
00:01:09
on login
00:01:10
and let's enter our account email
00:01:13
address
00:01:14
and let's handle our account password
00:01:22
authentication done so now we can use
00:01:24
share GPT here on vs code so let's first
00:01:28
cast to Shared GPT to develop a python
00:01:31
function so here on this field let's
00:01:35
input our request so here I'm saying to
00:01:38
develop a python function that only
00:01:40
accepts non-negative numbers and tells
00:01:43
if the number is even or off and so we
00:01:47
want a user input and we want to see the
00:01:50
result on the console
00:01:52
so let's click here to ask
00:01:56
and now we just have to wait for the
00:01:57
response
00:01:58
so here we can see that we are getting
00:02:01
the response from shared gbt here we can
00:02:04
see the code
00:02:05
so now we can copy the code easily by
00:02:08
clicking here or we can insert on the
00:02:10
open File by clicking on the insert so
00:02:14
now if we click here it inserts the code
00:02:17
on the open file
00:02:19
and then we can now screen from here a
00:02:22
new file with The Code by clicking here
00:02:24
on new
00:02:26
so now let's save this file
00:02:29
and now let's define here the file name
00:02:32
and make sure the extension is pi
00:02:34
because what we have here it's python
00:02:36
code
00:02:37
so now let's click on Save
00:02:39
and let's test the function so let's
00:02:43
open a terminal
00:02:44
and now let's run the code so let's put
00:02:48
here the file name let's press enter so
00:02:51
now let's enter a non-negative number so
00:02:54
let's just try a negative one and so we
00:02:57
can see that we got exception all the
00:02:59
negative numbers are accepted so let's
00:03:02
run again
00:03:03
let's enter number 10. and so it says
00:03:08
that it's even so it's right so now
00:03:11
let's insert an odd number
00:03:15
and here we can see the number you
00:03:16
handle is us so it's working as expected
00:03:21
so let's take a look now to some
00:03:22
features that comes with this shared GPT
00:03:25
extension so here if we select our code
00:03:29
and now do a right click we can see here
00:03:32
some built-in requests to ask to share
00:03:35
GPT so for example to ask to add tests
00:03:38
to this code find bugs optimize explain
00:03:41
and so on so basically we can select the
00:03:44
part of our code do a right click and
00:03:47
ask easily some of these things so let's
00:03:50
select the vocal right click and ask
00:03:53
explanation so let's click here on
00:03:56
explain
00:03:57
and now here we can see let's just wait
00:03:59
the response
00:04:01
and here we got the really detailed
00:04:03
explanation about the code that we have
00:04:07
here on our file
00:04:09
so now let's see another options that we
00:04:13
can use usually so let's send to share
00:04:16
CPT add comments to the code so let's
00:04:19
click here on that comments
00:04:24
and now it's adding comments to our code
00:04:28
it's really great let's just wait the
00:04:31
response to be finishing
00:04:33
and here we can get another code with
00:04:35
comments so let's copy and let's replace
00:04:39
for the one that we have here on the
00:04:41
file comes really clear and easy to
00:04:43
understand what does each part of the
00:04:47
code
00:04:48
so now let's add here a book to our code
00:04:51
so here on the condition that we are
00:04:53
checking if a number is even let's here
00:04:57
replace the zero for a one so that means
00:05:01
that when the number is off it will be
00:05:03
returned as even so that's a bug so now
00:05:06
let's select the vocal right click and
00:05:09
let's click on HPT find books
00:05:15
and here we can see that chat GPT has
00:05:18
found two issues so uh one it's above
00:05:22
the change that we did here and so it
00:05:26
says that this condition will always
00:05:28
return even for odd numbers and not if
00:05:32
for even numbers so to correctly check
00:05:34
that for even numbers we should change
00:05:36
the condition to what was before
00:05:40
and here it says also about the comment
00:05:42
that is the correct and it was because
00:05:45
of our change shears so here we can see
00:05:47
the code fix it without the bug so let's
00:05:51
copy it and replace
00:05:53
Let's test
00:05:58
let's enter a number so it's even let's
00:06:01
enter a odd number and it says it's on
00:06:04
so it's working well
00:06:06
so let's ask now to share GPT optimize
00:06:09
this code so let's select the wall code
00:06:11
and now right click and click on
00:06:13
optimize
00:06:19
and here we can see the response that
00:06:21
the code is already optimized as it
00:06:23
checks if the number is non-negative and
00:06:24
checks if the number is even or off
00:06:27
so let's ask now to share CBT write
00:06:30
tests for this functions so here let's
00:06:34
click on ADD tests
00:06:37
and here we have the test to test our
00:06:39
function so let's copy the code and
00:06:44
replace here
00:06:46
so let's just run our file
00:06:53
and here we can see the test so are okay
00:06:57
it's everything well working as expected
00:07:00
so now I'll just change here to 1 just
00:07:04
to see if we got here a kill so it's not
00:07:09
okay our tests
00:07:11
and we can see failure and it was
00:07:14
because here I changed the number to an
00:07:16
odd number and so it didn't match here
00:07:19
the expected result
00:07:21
and that's it for this tutorial if you
00:07:24
want to stay up to date on tutorials and
00:07:27
videos related to a chat gbt subscribe
00:07:30
to the channel and enable notifications
00:07:32
Bell and also if you like this tutorial
00:07:35
please give a thumbs up it really helps
00:07:38
this channel so thank you for watching
00:07:41
and I'll see you on the next tutorial

Description:

Welcome to this tutorial on how to integrate OpenAI's ChatGPT into your development workflow on VS Code. In this video, we'll show you how to install and set up the plugin and use ChatGPT to speed up your coding process and streamline your workflow. Whether you're a seasoned developer or just starting out, you'll learn how to harness the power of GPT-3 to write code faster and with greater accuracy. By the end of this tutorial, you'll be able to use GPT-3 to generate code snippets, complete code blocks, fix bugs and more, all from within VS Code.

Preparing download options

popular icon
Popular
hd icon
HD video
audio icon
Only sound
total icon
All
* — If the video is playing in a new tab, go to it, then right-click on the video and select "Save video as..."
** — Link intended for online playback in specialized players

Questions about downloading video

mobile menu iconHow can I download "How to Integrate OpenAI's ChatGPT on VS Code for Lightning-Fast Development⚡" video?mobile menu icon

  • http://unidownloader.com/ website is the best way to download a video or a separate audio track if you want to do without installing programs and extensions.

  • The UDL Helper extension is a convenient button that is seamlessly integrated into YouTube, Instagram and OK.ru sites for fast content download.

  • UDL Client program (for Windows) is the most powerful solution that supports more than 900 websites, social networks and video hosting sites, as well as any video quality that is available in the source.

  • UDL Lite is a really convenient way to access a website from your mobile device. With its help, you can easily download videos directly to your smartphone.

mobile menu iconWhich format of "How to Integrate OpenAI's ChatGPT on VS Code for Lightning-Fast Development⚡" video should I choose?mobile menu icon

  • The best quality formats are FullHD (1080p), 2K (1440p), 4K (2160p) and 8K (4320p). The higher the resolution of your screen, the higher the video quality should be. However, there are other factors to consider: download speed, amount of free space, and device performance during playback.

mobile menu iconWhy does my computer freeze when loading a "How to Integrate OpenAI's ChatGPT on VS Code for Lightning-Fast Development⚡" video?mobile menu icon

  • The browser/computer should not freeze completely! If this happens, please report it with a link to the video. Sometimes videos cannot be downloaded directly in a suitable format, so we have added the ability to convert the file to the desired format. In some cases, this process may actively use computer resources.

mobile menu iconHow can I download "How to Integrate OpenAI's ChatGPT on VS Code for Lightning-Fast Development⚡" video to my phone?mobile menu icon

  • You can download a video to your smartphone using the website or the PWA application UDL Lite. It is also possible to send a download link via QR code using the UDL Helper extension.

mobile menu iconHow can I download an audio track (music) to MP3 "How to Integrate OpenAI's ChatGPT on VS Code for Lightning-Fast Development⚡"?mobile menu icon

  • The most convenient way is to use the UDL Client program, which supports converting video to MP3 format. In some cases, MP3 can also be downloaded through the UDL Helper extension.

mobile menu iconHow can I save a frame from a video "How to Integrate OpenAI's ChatGPT on VS Code for Lightning-Fast Development⚡"?mobile menu icon

  • This feature is available in the UDL Helper extension. Make sure that "Show the video snapshot button" is checked in the settings. A camera icon should appear in the lower right corner of the player to the left of the "Settings" icon. When you click on it, the current frame from the video will be saved to your computer in JPEG format.

mobile menu iconWhat's the price of all this stuff?mobile menu icon

  • It costs nothing. Our services are absolutely free for all users. There are no PRO subscriptions, no restrictions on the number or maximum length of downloaded videos.