From 090d871c42a21ca7ea13ea39a6035c83a2d7e433 Mon Sep 17 00:00:00 2001 From: Benjamin McCormick Date: Thu, 13 Nov 2025 12:21:45 -0500 Subject: [PATCH] chore: add comment about backup to docstring --- src/utils/clients.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/clients.py b/src/utils/clients.py index 8913d2e9..83e78bb0 100644 --- a/src/utils/clients.py +++ b/src/utils/clients.py @@ -184,7 +184,8 @@ async def honcho_llm_call( stream: bool = False, ) -> HonchoLLMCallResponse[Any] | AsyncIterator[HonchoLLMCallStreamChunk]: """ - Make an LLM call with automatic backup provider failover. + Make an LLM call with automatic backup provider failover. Backup provider/model + is used on the final retry attempt, which is 3 by default. Args: llm_settings: Settings object containing PROVIDER, MODEL,