From 0448979d91be4b47c540f23aba738e8f38931f76 Mon Sep 17 00:00:00 2001 From: Tim O'Farrell Date: Thu, 20 Feb 2025 17:01:02 +0000 Subject: [PATCH] Checking to see if the api key is getting lost --- openhands/llm/llm.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openhands/llm/llm.py b/openhands/llm/llm.py index b40f11ca8396..de97d3bcefe6 100644 --- a/openhands/llm/llm.py +++ b/openhands/llm/llm.py @@ -144,6 +144,8 @@ def __init__( 'temperature' ) # temperature is not supported for reasoning models + logger.info(f'TRACE:LLM_CONFIG:{self.config.api_key}:{self.config}') + self._completion = partial( litellm_completion, model=self.config.model,