Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ajikan/ScribeAI
ChatGPT extension for VSCode.
https://github.com/ajikan/ScribeAI
ai chat-application chatbot chatgpt codex copilot deep-learning gpt gpt-3 machine-learning openai reinforcement-learning visual-studio-code vscode vscode-extension
Last synced: 3 months ago
JSON representation
ChatGPT extension for VSCode.
- Host: GitHub
- URL: https://github.com/ajikan/ScribeAI
- Owner: ajikan
- License: apache-2.0
- Created: 2023-01-21T01:48:42.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-12T19:50:44.000Z (7 months ago)
- Last Synced: 2024-04-26T01:31:32.035Z (7 months ago)
- Topics: ai, chat-application, chatbot, chatgpt, codex, copilot, deep-learning, gpt, gpt-3, machine-learning, openai, reinforcement-learning, visual-studio-code, vscode, vscode-extension
- Language: TypeScript
- Homepage:
- Size: 10.2 MB
- Stars: 151
- Watchers: 6
- Forks: 23
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Scribe AI
Features
Β·
Getting Started
Β·
Support and Gratitude
Scribe AI is a ChatGPT-like extension for VS Code. Now you can have an AI chatbot like ChatGPT right in VS Code! Use it as your AI programming assistant which you can talk with to understand complex code, modify and improve your code, or generate comments for your code. The possibilities are endless. To start, highlight a piece of code and click on the plus icon on the left to open up a chat and start talking with Scribe AI just like in ChatGPT! All your conversations are saved in your workspace so you can look back on them as notes.
π VSCode MarketplaceΒ
# π’ v1.2.1 Update
- `gpt-4` model is now available to choose for those people that have access to it.# π’ v1.2.0 Update
- `code-davinci-002` no longer supported. OpenAI recently announced the shutdown of Codex models by March 23.
- Markdown support! Answers provided by AI are now formatted in markdown to enable better readability.# π’ v1.1.5 Update
- Official ChatGPT is finally available! OpenAI recently officially announced the release of their ChatGPT API.
- You can now select the ChatGPT model by going to User Settings via `Code` -> `Preferences` -> `Settings` and under `Extensions` you will find `ScribeAI` settings. Or you can just search `ScribeAI` in search box. And you will find a option to choose your model. Go ahead and choose `ChatGPT` and restart your extension by clicking on `restart your extension` in the API key settings. Now you are using ChatGPT!
- Notice how answers provided by ChatGPT is much more detailed and informant, it's amazing!!Β
# π Preview
Β
# β¨ Features
- π¬ **Ask AI:** Highlight a piece of code, click on the chat icon, and type in any questions you might have about the code such as `Explain the code`. Then hit `Ask AI` button! The AI will respond back to you with the response. You can continue to reply to the AIβs response and hold a conversation with the AI just like in ChatGPT! The conversation context is maintained between queries. The conversation will be saved in your workspace and you can close it and open it anytime. You can also edit your comments and delete them.
***Editing:***
Β
- π§ **AI Edit:** Highlight a piece of code and click on the chat icon, then enter the instruction on how you want the AI to modify the code such as `Refactor the code to include comments`, `Rewrite the code in Python`, and much more! The possibilities are endless. Now finally hit `AI Edit` button and you will see that your selected code has been modified. If you donβt like the result you can always Undo it by pressing `Mac:` β Command + Z, `Windows:` Ctrl + Z or go to `Edit -> Undo`. Sometimes the formatting of the result is not correct or your originally highlighted section gets messed up, in such cases you can rehighlight the code and ask AI to `Reformat the code so that itβs correct` and press the `AI Edit` button.
***Refactoring:***
***Rewriting in another lanugage:***
***Adding docstring:***
***Fixing mistakes:***
Β
- π **Note Taking:** You can also add notes inside your conversation by typing your note and pressing `Create Note`. Your notes wonβt get sent over to AI.
Β
# π Getting Started
## π¦ Installation
- To use this extension, you can either install it from the VSCode marketplace or download and install `.vsix` file from Releases.### π Download extension from VSCode Marketplace
- Click on the Extensions icon(Ctrl+Shift+X)- Search for `ScribeAI`
- The extension on VSCode marketplace looks like this, click the install button.
![image](https://user-images.githubusercontent.com/26835888/218777021-59781cc1-788d-47e5-93bd-be1f8336f3ec.png)
- Once installation is complete, go to settings and search for `ScribeAI` to add your OpenAI API key, when you install and use ScribeAI for the first time, it will ask you for your OpenAI API key. This is used by the extension to access the API and is only sent to OpenAI.
![OpenAI](https://user-images.githubusercontent.com/26835888/218778164-1dbc6040-d44f-46be-b4a0-45baf4779e1c.jpg)
- When you are done adding the API key; reload/restart the extension to apply the changes
- Go to the explorer in VSCode and open any file that you want to work on or edit.
- Inside the open or active editor click the ` + ` icon that often appears on the left
- When you first use ScribeAI whether by `Ask AI` or `AI Edit`, it will ask you for your OpenAI API key. This is used by the extension to access the API and is only sent to OpenAI.
### π Download and install `.vsix` file from Releases.
- Click on releases tab.- You are redirected to a page that looks like this; Click on the preferred zipped file format; and download
![image](https://user-images.githubusercontent.com/26835888/218781965-cce59390-fb10-42c0-9d88-d7444ead98cd.png)
- Unzip the downloaded file, and open the folder with VSCode
- Go through the process elaborated above to add your OpenAI API key and setup ScribeAI for the first time
## βοΈ Settings
- You can also change your API key in User Settings via `Code` -> `Preferences` -> `Settings` and under `Extensions` you will find `ScribeAI` settings. Or you can just search `ScribeAI` in search box.
### ποΈ To find your OpenAI API key:
1. Go to https://beta.openai.com/account/api-keys. You will need to log in (or sign up) to your OpenAI account.
2. Click "Create new secret key", and copy it.
3. You should then paste it into VS Code when prompted.- If you wish to change the AI model you use which by default is `code-davinci-002` (because itβs free currently), then you can change it in User Settings.
- π₯ Remember to restart your extension and workspace when you change your settings. You can do that by clicking on `restart your extension` in the API key settings π₯Β
# β€οΈ Support and Gratitude
- This wouldn't have been possible without OpenAI's API to access its AI services.
- I want to thank the wonderful VS Code community and all the developers that maintain VS Code.
- If you like this extension and found it useful, please consider donating me as I am only a new grad developer and any amount of donation will be of tremendous help and encourage me to keep going.
- Chatbot icon by Icons8Β
Β
Copyright Β© 2022-present Scribe AI Team