From 6129aafed91e32970b99fc130007f30b58eb3d8f Mon Sep 17 00:00:00 2001 From: Ofer Mendelevitch Date: Fri, 1 Nov 2024 14:45:56 -0700 Subject: [PATCH] fixed lint issue --- vectara_agentic/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vectara_agentic/tools.py b/vectara_agentic/tools.py index 5a4f5a7..b39584f 100644 --- a/vectara_agentic/tools.py +++ b/vectara_agentic/tools.py @@ -183,7 +183,7 @@ def create_rag_tool( udf_expression (str, optional): the user defined expression for reranking results. rerank_chain (List[Dict], optional): A list of rerankers to be applied sequentially. Each dictionary should specify the "type" of reranker (mmr, slingshot, udf) - and any other parameters (e.g. "limit" or "cutoff" for any type, + and any other parameters (e.g. "limit" or "cutoff" for any type, "diversity_bias" for mmr, and "user_function" for udf). If using slingshot/multilingual_reranker_v1, it must be first in the list. include_citations (bool, optional): Whether to include citations in the response.