From ac1414b57151a31645217f07fc182f22aabbe1c3 Mon Sep 17 00:00:00 2001 From: Jash Gulabrai <37194352+JashG@users.noreply.github.com> Date: Wed, 17 Sep 2025 14:45:15 -0400 Subject: [PATCH] fix: Set provider_id in NVIDIA notebook when registering dataset (#3472) # What does this PR do? When registering a dataset for NVIDIA, the DatasetsRoutingTable expects `nvidia` to be passed via the `provider_id` [here](https://github.com/llamastack/llama-stack/blob/main/llama_stack/core/routing_tables/datasets.py#L61). This PR fixes a notebook to correctly use `provider_id`. Closes #3308 ## Test Plan Manually execute the notebook steps to verify the dataset is registered. Co-authored-by: Jash Gulabrai --- .../nvidia/tool_calling/2_finetuning_and_inference.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/notebooks/nvidia/tool_calling/2_finetuning_and_inference.ipynb b/docs/notebooks/nvidia/tool_calling/2_finetuning_and_inference.ipynb index a80720a5f..0e69cafd5 100644 --- a/docs/notebooks/nvidia/tool_calling/2_finetuning_and_inference.ipynb +++ b/docs/notebooks/nvidia/tool_calling/2_finetuning_and_inference.ipynb @@ -373,7 +373,7 @@ " metadata={\n", " \"format\": \"json\",\n", " \"description\": \"Tool calling xLAM dataset in OpenAI ChatCompletions format\",\n", - " \"provider\": \"nvidia\"\n", + " \"provider_id\": \"nvidia\"\n", " }\n", ")\n", "print(response)"