From bcb34145616e6ea0f4cc3259ece38ae6197a1a0e Mon Sep 17 00:00:00 2001 From: pedrohsdb Date: Sat, 18 Oct 2025 10:44:28 -0700 Subject: [PATCH] magnifex qwen3 featherless implementation (#3764) --- skyvern/forge/sdk/api/llm/api_handler_factory.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skyvern/forge/sdk/api/llm/api_handler_factory.py b/skyvern/forge/sdk/api/llm/api_handler_factory.py index b073f6f3..027777aa 100644 --- a/skyvern/forge/sdk/api/llm/api_handler_factory.py +++ b/skyvern/forge/sdk/api/llm/api_handler_factory.py @@ -401,7 +401,7 @@ class LLMAPIHandlerFactory: # FIXME: volcengine doesn't support litellm cost calculation. llm_cost = litellm.completion_cost(completion_response=response) except Exception as e: - LOG.info("Failed to calculate LLM cost", error=str(e), exc_info=True) + LOG.debug("Failed to calculate LLM cost", error=str(e), exc_info=True) llm_cost = 0 prompt_tokens = 0 completion_tokens = 0 @@ -705,7 +705,7 @@ class LLMAPIHandlerFactory: # FIXME: volcengine doesn't support litellm cost calculation. llm_cost = litellm.completion_cost(completion_response=response) except Exception as e: - LOG.info("Failed to calculate LLM cost", error=str(e), exc_info=True) + LOG.debug("Failed to calculate LLM cost", error=str(e), exc_info=True) llm_cost = 0 prompt_tokens = 0 completion_tokens = 0 @@ -1276,7 +1276,7 @@ class LLMCaller: try: llm_cost = litellm.completion_cost(completion_response=response) except Exception as e: - LOG.info("Failed to calculate LLM cost", error=str(e), exc_info=True) + LOG.debug("Failed to calculate LLM cost", error=str(e), exc_info=True) llm_cost = 0 input_tokens = 0 output_tokens = 0