diff options
Diffstat (limited to 'continuedev/src')
-rw-r--r-- | continuedev/src/continuedev/core/autopilot.py | 2 | ||||
-rw-r--r-- | continuedev/src/continuedev/plugins/steps/main.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/continuedev/src/continuedev/core/autopilot.py b/continuedev/src/continuedev/core/autopilot.py index 5804ce6b..0155e755 100644 --- a/continuedev/src/continuedev/core/autopilot.py +++ b/continuedev/src/continuedev/core/autopilot.py @@ -68,7 +68,7 @@ def get_error_title(e: Exception) -> str: ): return e._message elif isinstance(e, ClientPayloadError): - return "The request to OpenAI failed. Please try again." + return "The request failed. Please try again." elif isinstance(e, openai_errors.APIConnectionError): 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): diff --git a/continuedev/src/continuedev/plugins/steps/main.py b/continuedev/src/continuedev/plugins/steps/main.py index 241afe31..0698f1ae 100644 --- a/continuedev/src/continuedev/plugins/steps/main.py +++ b/continuedev/src/continuedev/plugins/steps/main.py @@ -333,7 +333,7 @@ class EditHighlightedCodeStep(Step): if len(range_in_files) == 0: raise ContinueCustomException( message="Please highlight some code and try again.", - title="No Code Selected", + title="No Code Selected (highlight and select with cmd+shift+M)", ) # If all of the ranges are point ranges, only edit the last one |