This Visual Studio Code extension allows you to use the official OpenAI API to generate code or natural language responses to your questions from OpenAI's GPT3 or ChatGPT, right within the editor.
Supercharge your coding with AI-powered assistance! Automatically write new code from scratch, ask questions, get explanations, refactor code, find bugs and more πβ¨
π’ Warning: ChatGPT
model was removed from the API, please change to another model in the extension settings.
To use this extension, install it from the VSCode marketplace.
Settings
panel by going to the File
menu and selecting Preferences
, then Settings
.CodeGPT
to filter the settings list.After completing these steps, the extension should be ready to use.
To use this extension, you will need an API key from OpenAI. To obtain one, follow these steps:
Create new secret key
button.API Key
field in the extension settings.When you create a new account, you receive $18 in free credits for the API which you must use in the first 90 days. You can see pricing information here. 1000 tokens are about 700 words, and you can see the token count for each request at the end of the response in the sidebar.
As of January 31, 2023, only the code-*
models and ChatGPT
are avilable for free! You only spend your credits when you use the text-*
models. You can change the model in the extension settings.
To use the extension, open a text editor in Visual Studio Code and open the CodeGPT panel by clicking on the CodeGPT icon in the sidebar. This will open a panel with an input field where you can enter your prompt or question. By clicking enter, it will be sent to GPT3. Its response will be displayed below the input field in the sidebar (note that it may take some time for it to be calculated).
You can also select a code snippet in the editor and then enter a prompt in the side panel, or right-click and select "Ask CodeGPT". The selected code will be automatically appended to your query when it is sent to the AI. This can be useful for generating code snippets or getting explanations for specific pieces of code.
To insert a code snippet from the AI's response into the editor, simply click on the code block in the panel. The code will be automatically inserted at the cursor position in the active editor.
You can select some code in the editor, right click on it and choose one of the following shortcuts from the context menu:
Ask CodeGPT
: will provide a prompt for you to enter any queryCodeGPT: Explain selection
: will explain what the selected code doesCodeGPT: Refactor selection
: will try to refactor the selected codeCodeGPT: Find problems
: looks for problems/errors in the selected code, fixes and explains themCodeGPT: Optimize selection
: tries to optimize the selected codeAsk CodeGPT
is also available when nothing is selected. For the other four commands, you can customize the exact prompt that will be sent to the AI by editing the extension settings in VSCode Preferences.
There, you can also change the model that will be used for the requests. The default is ChatGPT
which is smartest and currently free, but you can change it to another model (text-davinci-003
is the best of the paid ones, code-davinci-002
of the free) if it doesn't work. You can also change the temperature and number of tokens that will be returned by the AI. The default values are 0.5 and 1024, respectively.
Please note that this extension is currently a proof of concept and may have some limitations or bugs. We welcome feedback and contributions to improve the extension. Also check out the ChatGPT extension which is smarter, but the setup is more complicated and it may not work (403/429 errors). If you enjoy this extension, please consider buying me a coffee βοΈ to support my work!