diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-03 11:33:05 -0400 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-03 11:33:05 -0400 |
commit | b2fbe075b5ba91636d643f88be1c04ea576e2622 (patch) | |
tree | 000a5262118f2479f5ee41b7bae37e8133d11dbd /extension/package.json | |
parent | 917ba983d604bf9f590265b38e65be5c75643828 (diff) | |
download | sncontinue-b2fbe075b5ba91636d643f88be1c04ea576e2622.tar.gz sncontinue-b2fbe075b5ba91636d643f88be1c04ea576e2622.tar.bz2 sncontinue-b2fbe075b5ba91636d643f88be1c04ea576e2622.zip |
API tokens set through global Vsc settings
Diffstat (limited to 'extension/package.json')
-rw-r--r-- | extension/package.json | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/extension/package.json b/extension/package.json index 13086954..cc8e18c4 100644 --- a/extension/package.json +++ b/extension/package.json @@ -39,6 +39,16 @@ "type": "string", "default": "http://localhost:8000", "description": "The URL of the Continue server to use." + }, + "continue.OPENAI_API_KEY": { + "type": "string", + "default": "", + "description": "The OpenAI API key to use for code generation." + }, + "continue.HUGGING_FACE_TOKEN": { + "type": "string", + "default": "", + "description": "The Hugging Face API token to use for code generation." } } }, |