Fix a typo in the CHANGELOG

This commit is contained in:
Paul Kompfner
2025-08-26 09:51:48 -04:00
parent dcb4949e20
commit a79fe40162

View File

@@ -52,7 +52,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
llm_google = GoogleLLMService(api_key=os.getenv("GOOGLE_API_KEY"))
# Instantiate a switcher
# (ServiceSwitcherStrategyManual default to OpenAI, as it's first in the list)
# (ServiceSwitcherStrategyManual defaults to OpenAI, as it's first in the list)
llm_switcher = LLMSwitcher(
llms=[llm_openai, llm_google], strategy_type=ServiceSwitcherStrategyManual
)