mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-15 23:31:29 +00:00
fix(vector_stores): default the search-count debug log to a tuple so LIT002 stays within budget
This commit is contained in:
parent
e7aeb9199a
commit
c4d09a31e0
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue