[doc]add GLM5.md#6709
Conversation
Summary of ChangesHello @nakairika, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request introduces new documentation for the GLM-5 model, providing users with essential information to set up, deploy, and evaluate the model effectively within the vLLM-Ascend ecosystem. The added guide covers environment preparation, detailed deployment scenarios for both single and multi-node configurations, and outlines the recommended evaluation procedures, thereby enhancing the platform's support for advanced Mixture-of-Experts models. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request adds a new documentation page for the GLM-5 model. The documentation provides setup and deployment instructions. My review has identified a few issues that should be addressed to improve the quality and usability of the documentation. The new markdown file contains broken links due to incorrect syntax and includes sections with placeholder text ('Not test yet.'), indicating it is incomplete. Furthermore, the new documentation file is not added to the main table of contents in docs/source/tutorials/models/index.md, which will make it an orphaned page. Also, GLM-5 is not added to the table of supported models in docs/source/user_guide/support_matrix/supported_models.md.
| Refer to [supported features]([Supported Models — vllm-ascend](https://docs.vllm.ai/projects/ascend/en/latest/user_guide/support_matrix/supported_models.html)) to get the model's supported feature matrix. | ||
|
|
||
| Refer to [feature guide]([Supported Features — vllm-ascend](https://docs.vllm.ai/projects/ascend/en/latest/user_guide/support_matrix/supported_features.html)) to get the feature's configuration. |
There was a problem hiding this comment.
The markdown syntax for these links is incorrect, which will result in them being broken in the rendered documentation. The format [display text]([link text](url)) is not valid. It should be [display text](url).
| Refer to [supported features]([Supported Models — vllm-ascend](https://docs.vllm.ai/projects/ascend/en/latest/user_guide/support_matrix/supported_models.html)) to get the model's supported feature matrix. | |
| Refer to [feature guide]([Supported Features — vllm-ascend](https://docs.vllm.ai/projects/ascend/en/latest/user_guide/support_matrix/supported_features.html)) to get the feature's configuration. | |
| Refer to [supported features](https://docs.vllm.ai/projects/ascend/en/latest/user_guide/support_matrix/supported_models.html) to get the model's supported feature matrix. | |
| Refer to [feature guide](https://docs.vllm.ai/projects/ascend/en/latest/user_guide/support_matrix/supported_features.html) to get the feature's configuration. |
|
|
||
| ### Prefill-Decode Disaggregation | ||
|
|
||
| Not test yet. |
There was a problem hiding this comment.
This section contains placeholder text indicating it is incomplete. Please either provide the content for this section or remove it before merging. Shipping documentation with 'Not test yet' is confusing for users and makes the documentation seem unfinished.
| Not test yet. | |
| Not tested yet. |
|
|
||
| ### Using Language Model Evaluation Harness | ||
|
|
||
| Not test yet. |
There was a problem hiding this comment.
This section contains placeholder text indicating it is incomplete. Please either provide the content for this section or remove it before merging. Shipping documentation with 'Not test yet' is confusing for users and makes the documentation seem unfinished.
| Not test yet. | |
| Not tested yet. |
| ### Model Weight | ||
|
|
||
| - `GLM-5`(BF16 version): [Download model weight](https://www.modelscope.cn/models/ZhipuAI/GLM-5). | ||
| - `GLM-5-w4a8`(Quantized version without mtp): [Download model weight](https://modelers.cn/models/Eco-Tech/GLM-5-w4a8). |
There was a problem hiding this comment.
make sure the weight is avaliable
| # Update the vllm-ascend image according to your environment. | ||
| # Note you should download the weight to /root/.cache in advance. | ||
| # Update the vllm-ascend image | ||
| export IMAGE=m.daocloud.io/quay.io/ascend/vllm-ascend:v0.14.0rc1-a3 |
There was a problem hiding this comment.
update the image tag once it's ready
There was a problem hiding this comment.
change to:
glm5
glm5-a3
glm5-openeuler
glm5-a3-openeuler
| git clone https://github.com/vllm-project/vllm-ascend.git | ||
| cd vllm-ascend | ||
| git submodule update --init --recursive | ||
| git checkout ff3a50d011dcbea08f87ebed69ff1bf156dbb01e |
There was a problem hiding this comment.
make sure the hash is correct
|
👋 Hi! Thank you for contributing to the vLLM Ascend project. The following points will speed up your PR merge:
If CI fails, you can run linting and testing checks locally according Contributing and Testing. |
c0d31f7 to
f38e682
Compare
…to qwen3next_rebase * 'main' of https://github.com/vllm-project/vllm-ascend: [Docs] Fix GLM-5 deploy command (vllm-project#6711) [npugraph_ex]enable npugraph_ex by default (vllm-project#6664) [doc]add GLM5.md (vllm-project#6709) [Model] GLM5 adaptation (vllm-project#6642) [Bugfix] Update target probs to target logits in rejection sample (vllm-project#6685) [Main][Ops] Make triton rope support index_selecting from cos_sin_cache (vllm-project#5450) [CI]fix nightly multi node test error for wait for pod ready (vllm-project#6675) [main to main] upgrade main 0210 (vllm-project#6673) [main][Quant] Remove unused rotation functions and parameters from W4A4 LAOS quantization (vllm-project#6648) [Test][BugFix] Fix torch.rand usage in triton penalty test (vllm-project#6680) Add Worker Interface:check_health (vllm-project#6681)
### What this PR does / why we need it? Add GLM5 doc ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? - vLLM version: v0.15.0 - vLLM main: vllm-project/vllm@9562912 Signed-off-by: nakairika <982275964@qq.com> Signed-off-by: momochenchuw <chenchuw@huawei.com>
### What this PR does / why we need it? Add GLM5 doc ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? - vLLM version: v0.15.0 - vLLM main: vllm-project/vllm@9562912 Signed-off-by: nakairika <982275964@qq.com>
### What this PR does / why we need it? Add GLM5 doc ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? - vLLM version: v0.15.0 - vLLM main: vllm-project/vllm@9562912 Signed-off-by: nakairika <982275964@qq.com> Signed-off-by: zrj026 <zhangrunjiang026@gmail.com>
### What this PR does / why we need it? Add GLM5 doc ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? - vLLM version: v0.15.0 - vLLM main: vllm-project/vllm@9562912 Signed-off-by: nakairika <982275964@qq.com>
### What this PR does / why we need it? Add GLM5 doc ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? - vLLM version: v0.15.0 - vLLM main: vllm-project/vllm@9562912 Signed-off-by: nakairika <982275964@qq.com> Signed-off-by: zrj026 <zhangrunjiang026@gmail.com>
### What this PR does / why we need it? Add GLM5 doc ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? - vLLM version: v0.15.0 - vLLM main: vllm-project/vllm@9562912 Signed-off-by: nakairika <982275964@qq.com>
What this PR does / why we need it?
Add GLM5 doc
Does this PR introduce any user-facing change?
No
How was this patch tested?