summaryrefslogtreecommitdiff
path: root/continuedev/src
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-07-05 23:24:10 -0700
committerTy Dunn <ty@tydunn.com>2023-07-05 23:24:10 -0700
commit1f28a09fa8af14e09e85f0407e219c9cade5b4de (patch)
tree4e66d1e87e49b17d48df88d86866a463e47e8196 /continuedev/src
parent4fd50ba78b0199d3495f1cd7e08f595a751e6fe3 (diff)
downloadsncontinue-1f28a09fa8af14e09e85f0407e219c9cade5b4de.tar.gz
sncontinue-1f28a09fa8af14e09e85f0407e219c9cade5b4de.tar.bz2
sncontinue-1f28a09fa8af14e09e85f0407e219c9cade5b4de.zip
OpenAI api key message
Diffstat (limited to 'continuedev/src')
-rw-r--r--continuedev/src/continuedev/core/sdk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/continuedev/src/continuedev/core/sdk.py b/continuedev/src/continuedev/core/sdk.py
index fe975b99..49513013 100644
--- a/continuedev/src/continuedev/core/sdk.py
+++ b/continuedev/src/continuedev/core/sdk.py
@@ -29,7 +29,7 @@ class Models:
def __load_openai_model(self, model: str) -> OpenAI:
async def load_openai_model():
api_key = await self.sdk.get_user_secret(
- 'OPENAI_API_KEY', 'Enter your OpenAI API key, OR press enter to try for free')
+ 'OPENAI_API_KEY', 'Enter your OpenAI API key or press enter to try for free')
if api_key == "":
return ProxyServer(self.sdk.ide.unique_id, model)
return OpenAI(api_key=api_key, default_model=model)