From f9dbd22fe18184c8f929ab933f36215b2940037f Mon Sep 17 00:00:00 2001 From: LincolnBurrows2017 <1607108966@qq.com> Date: Wed, 11 Mar 2026 23:46:06 +0800 Subject: [PATCH] fix(openai): typo (#35763) Fixed typo in comment: "equivelent" -> "equivalent" in libs/partners/openai/langchain_openai/chat_models/base.py Co-authored-by: AI Assistant --- libs/partners/openai/langchain_openai/chat_models/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/partners/openai/langchain_openai/chat_models/base.py b/libs/partners/openai/langchain_openai/chat_models/base.py index 47f19f654c3..0eb07cc9bb9 100644 --- a/libs/partners/openai/langchain_openai/chat_models/base.py +++ b/libs/partners/openai/langchain_openai/chat_models/base.py @@ -146,7 +146,7 @@ if TYPE_CHECKING: logger = logging.getLogger(__name__) -# This SSL context is equivelent to the default `verify=True`. +# This SSL context is equivalent to the default `verify=True`. # https://www.python-httpx.org/advanced/ssl/#configuring-client-instances global_ssl_context = ssl.create_default_context(cafile=certifi.where())