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", "}" ] },