diff options
author | Ty Dunn <ty@tydunn.com> | 2023-07-26 15:58:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 15:58:58 -0700 |
commit | d87919794e4d85cdb4c26846db84486877bde995 (patch) | |
tree | 83587a4a946ee47d7a99789a6f642231bb2b1b9b /docs | |
parent | eba2f57a6462f691000544aa4d274de2e8a5cc37 (diff) | |
download | sncontinue-d87919794e4d85cdb4c26846db84486877bde995.tar.gz sncontinue-d87919794e4d85cdb4c26846db84486877bde995.tar.bz2 sncontinue-d87919794e4d85cdb4c26846db84486877bde995.zip |
Update customization.md
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docs/customization.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/docs/customization.md b/docs/docs/customization.md index 9e04280d..6818ab56 100644 --- a/docs/docs/customization.md +++ b/docs/docs/customization.md @@ -6,6 +6,17 @@ Continue can be deeply customized by editing the `ContinueConfig` object in `~/. Change the `default_model` field to any of "gpt-3.5-turbo", "gpt-3.5-turbo-16k", "gpt-4", "claude-2", or "ggml". +## Adding a model 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 your provider (e.g. 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 + ### claude-2 and gpt-X If you have access, simply set `default_model` to the model you would like to use, then you will be prompted for a personal API key after reloading VS Code. If using an OpenAI model, you can press enter to try with our API key for free. |