From 80335d57a50bbac68139d4812774e1bf5eccb6f5 Mon Sep 17 00:00:00 2001 From: yangdx Date: Fri, 28 Mar 2025 21:43:47 +0800 Subject: [PATCH] Fix linting --- lightrag/llm/openai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightrag/llm/openai.py b/lightrag/llm/openai.py index 1fbe3d64..c3cebd17 100644 --- a/lightrag/llm/openai.py +++ b/lightrag/llm/openai.py @@ -165,7 +165,7 @@ async def openai_complete_if_cache( "total_tokens": getattr(response.usage, "total_tokens", 0), } token_tracker.add_usage(token_counts) - + logger.debug(f"Response content len: {len(content)}") verbose_debug(f"Response: {response}")