Skip to content

A VSCode extension that allows you to use ChatGPT inside the IDE

License

Notifications You must be signed in to change notification settings

yaleh/chatgpt-vscode

Repository files navigation

ChatGPT AI for VSCode

Visual Studio Marketplace Version Visual Studio Marketplace Downloads Github stars

Refactoring selected code using chatGPT

ChatGPT AI Extension integrates OpenAI's GPT-4, GPT-3.5, GPT-3 and Codex models into Visual Studio Code, providing AI-powered assistance for writing new code, asking questions, finding bugs, refactoring code, and more.

Links:


Refactoring selected code using chatGPT

Features

  • 💡 Ask general questions or use code snippets from the editor to query ChatGPT via an input box in the sidebar.
  • 💬 View chat history with requests and responses.
    • Toggle the display of requests and responses between rendered Markdown and raw text.
    • 📝 Insert code snippets from the AI's response into the active editor with corrected indentation.
    • 📋 Copy code snippets to the clipboard.
  • 📚 Multiple types of context available:
    • ❌ No context.
    • 📝 Selected text.
    • 📂 Whole file.
    • 📂🔍 All opened files.
  • 🖱️ Right-click on a code selection and run one of the context menu shortcuts for your code:
    • 📖 Automatically generate documentation.
    • 🤔 Explain the selected code.
    • ♻️ Refactor or optimize the code.
    • 🐛 Find problems with the code.
    • 💻 Complete the code according to the comments.
  • 🚀 See the response as it is being generated in real time.
  • 💬 Ask follow-up questions to the response and maintain conversation context.

Requirements

To use ChatGPT AI, please ensure that the following requirements are met:

  • Visual Studio Code version 1.73.0 or later is installed on your system.
  • You have an OpenAI API key or ChatGPT access token.

Installation

To use this extension, install it from the VSCode marketplace.

  1. After the installation is complete, you will need to add your OpenAI API key to the extension settings in VSCode. To do this, open the Settings panel by going to the File menu and selecting Preferences, then Settings.
  2. In the search bar, type ChatGPT to filter the settings list.
  3. In the ChatGPT section, enter your API key in the top field

After completing these steps, the extension should be ready to use.

API Modes

Currently, there are two modes for accessing the API: "ChatGPTAPI" and "ChatGPTUnofficialProxyAPI".

ChatGPTAPI

To use this extension, you will need an API key from OpenAI. To obtain one, follow these steps:

  1. Go to OpenAI's website. If you don't have an account, you will need to create one or sign up using your Google or Microsoft account.
  2. Click on the Create new secret key button.
  3. Copy the key and paste it into the API Key field in the extension settings.

ChatGPTUnofficialProxyAPI

To use the ChatGPTUnofficialProxyAPI, you need an OpenAI access token from the ChatGPT web app. You can obtain the access token in either of two ways:

  • Use acheong08/OpenAIAuth, which is a Python script to automatically log in and get an access token. This method works only with email and password accounts; it does not support accounts where you authenticate via Microsoft or Google.
  • Manually get an access token by logging in to the ChatGPT web app and opening https://chat.openai.com/api/auth/session, which will return a JSON object containing your access token string.

Access tokens last for approximately eight hours.

Building from source (not applicable for VSCode marketplace version)

To build the extension from source, clone the repository and run npm install to install the dependencies. You have to change some code in chatgpt module because VSCode runtime does not support fetch. Open node_modules/chatgpt/dist/index.js and add the following code at the top of the file:

import fetch from 'node-fetch';

Then remove the following lines (around line 15):

// src/fetch.ts
var fetch = globalThis.fetch;
if (typeof fetch !== "function") {
  throw new Error("Invalid environment: global fetch not defined");
}

You also need to replace the following part near the top of the file:

// src/tokenizer.ts
import { encoding_for_model } from "@dqbd/tiktoken";
var tokenizer = encoding_for_model("text-davinci-003");
function encode(input) {
  return tokenizer.encode(input);
}

with

// src/tokenizer.ts
import GPT3TokenizerImport from "gpt3-tokenizer";
var GPT3Tokenizer = typeof GPT3TokenizerImport === "function" ? GPT3TokenizerImport : GPT3TokenizerImport.default;
var tokenizer = new GPT3Tokenizer({ type: "gpt3" });
function encode(input) {
  return tokenizer.encode(input).bpe;
}

due to the fact that the @dqbd/tiktoken module is causing problems with the VSCode runtime. If you know how to fix this, please let me know.

Using the Extension

To use the extension, open a text editor in Visual Studio Code and open the ChatGPT panel by clicking on the ChatGPT 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 ChatGPT. Its response will be displayed below the input field in the sidebar (note that it may take some time for it to be calculated).

Writing new code using chatGPT

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 ChatGPT". 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.

Refactoring selected code using chatGPT

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.

chatGPT explaining selected code

You can select some code in the editor, right click on it and choose one of the following shortcuts from the context menu:

Commands

The following commands are available:

  • Ask ChatGPT: This command will provide a prompt for you to enter any query.
  • ChatGPT: Explain selection: This command will explain what the selected code does.
  • ChatGPT: Refactor selection: This command will attempt to refactor the selected code.
  • ChatGPT: Find problems: This command will look for problems/errors in the selected code, fix them, and provide an explanation.
  • ChatGPT: Optimize selection: This command will attempt to optimize the selected code.
  • ChatGPT: Complete code: This command will complete the code according to the last comments of the selection.

Ask ChatGPT 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.

Because ChatGPT is a conversational AI, you can ask follow-up questions to the response. The conversation context is maintained between queries, so you can ask multiple questions in a row. To reset the conversation context, click ctrl+shift+p and select ChatGPT: Reset Conversation.

License

ChatGPT AI is licensed under the MIT License. See the LICENSE file for more information.

Credits

About

A VSCode extension that allows you to use ChatGPT inside the IDE

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published