summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-11 15:41:20 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-11 15:41:20 -0700
commit31fa2bb97461e8c43377ae574607958e51c507b2 (patch)
tree0d1f1fd3c56ca13cb6c5605baf8cb57368e62621
parent9adfb8bf5b9f44be82488e37bc32cbd9a8817b53 (diff)
downloadsncontinue-31fa2bb97461e8c43377ae574607958e51c507b2.tar.gz
sncontinue-31fa2bb97461e8c43377ae574607958e51c507b2.tar.bz2
sncontinue-31fa2bb97461e8c43377ae574607958e51c507b2.zip
if ssl prob with personal key, tell to use our key
-rw-r--r--continuedev/src/continuedev/core/autopilot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/continuedev/src/continuedev/core/autopilot.py b/continuedev/src/continuedev/core/autopilot.py
index 11fc9cb1..3f07e270 100644
--- a/continuedev/src/continuedev/core/autopilot.py
+++ b/continuedev/src/continuedev/core/autopilot.py
@@ -35,7 +35,7 @@ def get_error_title(e: Exception) -> str:
elif isinstance(e, ClientPayloadError):
return "The request to OpenAI failed. Please try again."
elif isinstance(e, openai_errors.APIConnectionError):
- return "The request failed. Please check your internet connection and try again."
+ return "The request failed. Please check your internet connection and try again. If this issue persists, you can use our API key for free by going to VS Code settings and changing the value of continue.OPENAI_API_KEY to \"\""
elif isinstance(e, openai_errors.InvalidRequestError):
return 'Your API key does not have access to GPT-4. You can use ours for free by going to VS Code settings and changing the value of continue.OPENAI_API_KEY to ""'
return e.__str__() or e.__repr__()