From 6678b2bd1db781b2c6d12b2aa4a6cd8ee0e36307 Mon Sep 17 00:00:00 2001 From: Julio Quinteros Pro Date: Tue, 17 Feb 2026 17:11:34 -0300 Subject: [PATCH] fix: replace asyncio.iscoroutinefunction with inspect.iscoroutinefunction - asyncio.iscoroutinefunction() is deprecated in Python 3.16 - Use inspect.iscoroutinefunction() instead (standard library function) - Removes deprecation warning in track_llm_api_timing decorator This is part of the broader effort to remove Python 3.16 deprecation warnings. --- litellm/litellm_core_utils/logging_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/litellm/litellm_core_utils/logging_utils.py b/litellm/litellm_core_utils/logging_utils.py index bf43519afc6..8cde8ccef1c 100644 --- a/litellm/litellm_core_utils/logging_utils.py +++ b/litellm/litellm_core_utils/logging_utils.py @@ -1,5 +1,6 @@ import asyncio import functools +import inspect import time from datetime import datetime from typing import TYPE_CHECKING, Any, List, Optional, Union @@ -270,7 +271,7 @@ def track_llm_api_timing(): verbose_logger.debug(f"Error in service logging: {str(e)}") # Check if the function is async or sync - if asyncio.iscoroutinefunction(func): + if inspect.iscoroutinefunction(func): return async_wrapper return sync_wrapper