From f27c96e692ac9a8ebf6379a5d1ecb6f32fbcc3db Mon Sep 17 00:00:00 2001 From: Willem Jiang Date: Thu, 26 Jun 2025 10:36:26 +0800 Subject: [PATCH] fix: the lint error of llm.py (#369) --- src/llms/llm.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/llms/llm.py b/src/llms/llm.py index 85de2b6..d20696c 100644 --- a/src/llms/llm.py +++ b/src/llms/llm.py @@ -75,7 +75,7 @@ def _create_llm_use_conf( # Handle SSL verification settings verify_ssl = merged_conf.pop("verify_ssl", True) - + # Create custom HTTP client if SSL verification is disabled if not verify_ssl: http_client = httpx.Client(verify=False) @@ -90,7 +90,6 @@ def _create_llm_use_conf( ) - def get_llm_by_type( llm_type: LLMType, ) -> ChatOpenAI: