fix(vector_stores): default the search-count debug log to a tuple so LIT002 stays within budget

This commit is contained in:
mateo-berri 2026-09-04 20:20:07 -07:00
parent e7aeb9199a
commit c4d09a31e0

View file

@ -276,7 +276,7 @@ class VectorStorePreCallHook(CustomLogger):
verbose_logger.debug(
"Vector store search completed for vector_store_id=%s. Added context from %s results",
vector_store_id,
len(search_response.get("data", []) or []),
len(search_response.get("data") or ()),
)
return SearchSucceeded(response=search_response)