Drop `dev` suffix for doc url.
Rename url to `https://docs.vllm.ai/projects/ascend`
- vLLM version: v0.13.0
- vLLM main:
2f4e6548ef
Signed-off-by: wangxiyuan <wangxiyuan1007@gmail.com>
25 lines
449 B
Markdown
25 lines
449 B
Markdown
# vLLM Ascend Plugin documents
|
|
|
|
Live doc: https://docs.vllm.ai/projects/ascend
|
|
|
|
## Build the docs
|
|
|
|
```bash
|
|
# Install dependencies.
|
|
pip install -r requirements-docs.txt
|
|
|
|
# Build the docs.
|
|
make clean
|
|
make html
|
|
|
|
# Build the docs with translation
|
|
make intl
|
|
|
|
# Open the docs with your browser
|
|
python -m http.server -d _build/html/
|
|
```
|
|
|
|
Launch your browser and open:
|
|
- English version: http://localhost:8000
|
|
- Chinese version: http://localhost:8000/zh_CN
|