Skip to content

Commit

Permalink
Fix a confusing log message (#910)
Browse files Browse the repository at this point in the history
  • Loading branch information
drdavella authored Nov 7, 2024
1 parent 9b5df10 commit 2b01972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/codemodder/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def setup_openai_llm_client() -> OpenAI | None:
def setup_azure_llama_llm_client() -> ChatCompletionsClient | None:
"""Configure the Azure Llama LLM client."""
if not ChatCompletionsClient:
logger.info("Azure API client not available")
logger.info("Azure Llama client not available")
return None

azure_llama_key = os.getenv("CODEMODDER_AZURE_LLAMA_API_KEY")
Expand Down

0 comments on commit 2b01972

Please sign in to comment.