configure logger in the first place in skyvern init (#1965)

This commit is contained in:
Shuchang Zheng
2025-03-18 11:53:13 -07:00
committed by GitHub
parent c680e33b30
commit e4a986d286
2 changed files with 5 additions and 3 deletions

View File

@@ -166,7 +166,7 @@ class LLMAPIHandlerFactory:
# TODO (suchintan): Properly support reasoning tokens
reasoning_tokens = response.get("usage", {}).get("reasoning_tokens", 0)
LOG.info("Reasoning tokens", reasoning_tokens=reasoning_tokens)
LOG.debug("Reasoning tokens", reasoning_tokens=reasoning_tokens)
completion_tokens = response.get("usage", {}).get("completion_tokens", 0) + reasoning_tokens