From 487d730d5624ac1778340818427f61aef028179c Mon Sep 17 00:00:00 2001 From: Andrii Ieroshenko Date: Tue, 12 Dec 2023 13:52:43 -0800 Subject: [PATCH] correct pydoc --- packages/jupyter-ai/jupyter_ai/chat_handlers/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/jupyter-ai/jupyter_ai/chat_handlers/base.py b/packages/jupyter-ai/jupyter_ai/chat_handlers/base.py index f8b865d02..77b3ccad1 100644 --- a/packages/jupyter-ai/jupyter_ai/chat_handlers/base.py +++ b/packages/jupyter-ai/jupyter_ai/chat_handlers/base.py @@ -122,7 +122,7 @@ async def handle_exc(self, e: Exception, message: HumanChatMessage): def is_api_key_exc(self, e: Exception): """ - Checks if the exception is an API key exceptio of one of default models. + Checks if the exception is an default model API key exception. """ return ( OpenAIErrorUtil.is_api_key_exc(e)