diff options
author | Ty Dunn <ty@tydunn.com> | 2023-07-05 23:24:10 -0700 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-07-05 23:24:10 -0700 |
commit | 6d6a9b00b3ef0607177f525be2eb760f38dc4c59 (patch) | |
tree | 38f6b23d49455cea1fec2a63c55742460b82593c /continuedev | |
parent | a5386d7897f5e3f3f7443246de3a443f5b2179d0 (diff) | |
download | sncontinue-6d6a9b00b3ef0607177f525be2eb760f38dc4c59.tar.gz sncontinue-6d6a9b00b3ef0607177f525be2eb760f38dc4c59.tar.bz2 sncontinue-6d6a9b00b3ef0607177f525be2eb760f38dc4c59.zip |
OpenAI api key message
Diffstat (limited to 'continuedev')
-rw-r--r-- | continuedev/src/continuedev/core/sdk.py | 2 |
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) |