From ddfcb7c8ab75deae2773f392e5d9c39ca31de13f Mon Sep 17 00:00:00 2001 From: Mick Date: Tue, 11 Nov 2025 00:46:12 +0800 Subject: [PATCH] minor: fix notebook bug with new model_info fields added for warmup (#13005) --- docs/basic_usage/native_api.ipynb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/basic_usage/native_api.ipynb b/docs/basic_usage/native_api.ipynb index a62fa8d18..edfbd3453 100644 --- a/docs/basic_usage/native_api.ipynb +++ b/docs/basic_usage/native_api.ipynb @@ -86,7 +86,9 @@ "- `is_generation`: Whether the model is used as generation model or embedding model.\n", "- `tokenizer_path`: The path/name of the tokenizer.\n", "- `preferred_sampling_params`: The default sampling params specified via `--preferred-sampling-params`. `None` is returned in this example as we did not explicitly configure it in server args.\n", - "- `weight_version`: This field contains the version of the model weights. This is often used to track changes or updates to the model’s trained parameters." + "- `weight_version`: This field contains the version of the model weights. This is often used to track changes or updates to the model’s trained parameters.\n", + "- `has_image_understanding`: Whether the model has image-understanding capability.\n", + "- `has_audio_understanding`: Whether the model has audio-understanding capability." ] }, { @@ -110,6 +112,8 @@ " \"tokenizer_path\",\n", " \"preferred_sampling_params\",\n", " \"weight_version\",\n", + " \"has_image_understanding\",\n", + " \"has_audio_understanding\",\n", "}" ] },