Skip to content

Commit

Permalink
update err msg wording as per @JasonWeill
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii-i committed Dec 12, 2023
1 parent 33db517 commit 9838ba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jupyter-ai/jupyter_ai/chat_handlers/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def handle_api_key_error(self, e: Exception, message: HumanChatMessage):
):
name = getattr(self.config_manager.lm_provider, "name", "")
provider_name = f" {name}" if name else ""
response = f"Oops! It seems there's an issue with your{provider_name} API key. Please update your{provider_name} API key in the chat Settings."
response = f"Oops! There's a problem with your {provider_name} API key. Please update your{provider_name} API key in the chat settings."
self.reply(response, message)

async def _default_handle_exc(self, e: Exception, message: HumanChatMessage):
Expand Down

0 comments on commit 9838ba8

Please sign in to comment.