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 | 22f6e4a01aed7955f608fcaa2198dc7da7902f3e (patch) | |
tree | 1a54b9c2456ad5b58d4b9b11050a1c686cbdc2cb /extension/package.json | |
parent | fe22fcefa370e8a609123490ceeb7e646d949af3 (diff) | |
download | sncontinue-22f6e4a01aed7955f608fcaa2198dc7da7902f3e.tar.gz sncontinue-22f6e4a01aed7955f608fcaa2198dc7da7902f3e.tar.bz2 sncontinue-22f6e4a01aed7955f608fcaa2198dc7da7902f3e.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." } } }, |