You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help=f"Endpoint(in 'dyn://namespace.component.endpoint' format) to send requests to when running in disaggregation mode. Default: {DEFAULT_NEXT_ENDPOINT} if first worker, empty if next worker",
236
241
)
242
+
243
+
# To avoid name conflicts with different backends, adoped prefix "dyn-" for dynamo specific args
244
+
parser.add_argument(
245
+
"--dyn-tool-call-parser",
246
+
type=str,
247
+
default=None,
248
+
help="Tool call parser name for the model. Available options: 'hermes', 'nemotron_deci', 'llama3_json', 'mistral', 'phi4'.",
249
+
)
250
+
parser.add_argument(
251
+
"--dyn-reasoning-parser",
252
+
type=str,
253
+
default=None,
254
+
help="Reasoning parser name for the model. Available options: 'basic', 'deepseek_r1', 'gpt_oss'.",
0 commit comments