Skip to content

Commit

Permalink
Fix a confusing log message
Browse files Browse the repository at this point in the history
  • Loading branch information
drdavella committed Nov 5, 2024
1 parent f0d95cb commit 15af2f7
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 15af2f7

Please sign in to comment.