We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3520ab3 commit dea4482Copy full SHA for dea4482
1 file changed
nemo_retriever/src/nemo_retriever/cli/query/options.py
@@ -9,6 +9,7 @@
9
import typer
10
11
from nemo_retriever.models import VL_EMBED_MODEL, VL_RERANK_MODEL
12
+from nemo_retriever.query.options import DEFAULT_AGENTIC_LLM_MODEL
13
14
DEFAULT_EMBED_MODEL = VL_EMBED_MODEL
15
DEFAULT_RERANK_MODEL = VL_RERANK_MODEL
@@ -162,9 +163,8 @@
162
163
"--agentic-llm-model",
164
envvar="NEMO_RETRIEVER_AGENTIC_LLM_MODEL",
165
help=(
- "Chat model the agent drives. Defaults to "
166
- "nvidia/llama-3.3-nemotron-super-49b-v1.5; override here or via "
167
- "NEMO_RETRIEVER_AGENTIC_LLM_MODEL."
+ f"Chat model the agent drives. Defaults to {DEFAULT_AGENTIC_LLM_MODEL}; "
+ "override here or via NEMO_RETRIEVER_AGENTIC_LLM_MODEL."
168
),
169
170
]
0 commit comments