From 76ca06698c62b5a0dcfd13ef4cea842269525e9d Mon Sep 17 00:00:00 2001 From: Simo Lin Date: Fri, 5 Dec 2025 18:41:34 -0800 Subject: [PATCH] [bug] fix notebook to include new keys from model_info --- 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 2b406379dad8..672f3643e196 100644 --- a/docs/basic_usage/native_api.ipynb +++ b/docs/basic_usage/native_api.ipynb @@ -88,7 +88,9 @@ "- `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.\n", "- `has_image_understanding`: Whether the model has image-understanding capability.\n", - "- `has_audio_understanding`: Whether the model has audio-understanding capability." + "- `has_audio_understanding`: Whether the model has audio-understanding capability.\n", + "- `model_type`: The model type from the HuggingFace config (e.g., \"qwen2\", \"llama\").\n", + "- `architectures`: The model architectures from the HuggingFace config (e.g., [\"Qwen2ForCausalLM\"])." ] }, { @@ -114,6 +116,8 @@ " \"weight_version\",\n", " \"has_image_understanding\",\n", " \"has_audio_understanding\",\n", + " \"model_type\",\n", + " \"architectures\",\n", "}" ] },