Increase default CHUNK_TOP_K from 5 to 15
This commit is contained in:
parent
78033edabb
commit
2056c3c809
1 changed files with 2 additions and 2 deletions
|
|
@ -168,8 +168,8 @@ def parse_args() -> argparse.Namespace:
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--chunk-top-k",
|
"--chunk-top-k",
|
||||||
type=int,
|
type=int,
|
||||||
default=get_env_value("CHUNK_TOP_K", 5, int),
|
default=get_env_value("CHUNK_TOP_K", 15, int),
|
||||||
help="Number of text chunks to retrieve initially from vector search (default: from env or 5)",
|
help="Number of text chunks to retrieve initially from vector search (default: from env or 15)",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--chunk-rerank-top-k",
|
"--chunk-rerank-top-k",
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue