blob: b57aedb76ad4dadc1665c17b6e576d65db31df11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Continue
**[Continue](https://continue.dev/docs) is the open-source autopilot for software development—a [VS Code extension](https://marketplace.visualstudio.com/items?itemName=Continue.continue) that brings the power of ChatGPT to your IDE**
## Task, not tab, auto-complete
### Get possible explainations
Ask Continue about a part of your code to get another perspective
- `what might cause this error?`
- `what is the load_dotenv library name?`
- `how do I find running process on port 8000?`
### Edit in natural language
Highlight a section of code and instruct Continue to refactor it
- `/edit Make this use more descriptive variable names`
- `/edit Rewrite this API call to grab all pages`
- `/edit Use 'Union' instead of a vertical bar here`
### Generate files from scratch
Let Continue build the scaffolding of Python scripts, React components, and more
- `Create a shell script to back up my home dir to /tmp/`
- `Write Python in a new file to get Posthog events`
- `Add a React component for syntax highlighted code`
## OpenAI API Key
New users can try out Continue with GPT-4 using a proxy server that securely makes calls to OpenAI using our API key. Continue should just work the first time you install the extension in VS Code.
Once you are using Continue regularly though, you will need to add an OpenAI API key that has access to GPT-4 by following these steps:
1. Copy your API key from https://platform.openai.com/account/api-keys
2. Use the `cmd`+`,` (Mac) / `ctrl`+`,` (Windows) to open your VS Code settings
3. Type "Continue" in the search bar
4. Click `Edit in settings.json` under **Continue: OpenAI_API_KEY" section**
5. Paste your API key as the value for "continue.OPENAI_API_KEY" in `settings.json`
## License
[Apache 2.0 © 2023 Continue Dev, Inc.](./LICENSE)
|