Skip to content

Commit c1fd41b

Browse files
DarkLight1337Yuqi Zhang
authored and
Yuqi Zhang
committed
[Doc] Update references to doc files (vllm-project#18637)
Signed-off-by: DarkLight1337 <[email protected]> Signed-off-by: Yuqi Zhang <[email protected]>
1 parent 385e63a commit c1fd41b

File tree

13 files changed

+16
-19
lines changed

13 files changed

+16
-19
lines changed

.github/mergify.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ pull_request_rules:
5858
- files~=^benchmarks/structured_schemas/
5959
- files=benchmarks/benchmark_serving_structured_output.py
6060
- files=benchmarks/run_structured_output_benchmark.sh
61-
- files=docs/source/features/structured_outputs.md
61+
- files=docs/features/structured_outputs.md
6262
- files=examples/offline_inference/structured_outputs.py
6363
- files=examples/online_serving/openai_chat_completion_structured_outputs.py
6464
- files=examples/online_serving/openai_chat_completion_structured_outputs_with_reasoning.py
@@ -135,9 +135,7 @@ pull_request_rules:
135135
- files~=^tests/entrypoints/openai/tool_parsers/
136136
- files=tests/entrypoints/openai/test_chat_with_tool_reasoning.py
137137
- files~=^vllm/entrypoints/openai/tool_parsers/
138-
- files=docs/source/features/tool_calling.md
139-
- files=docs/source/getting_started/examples/openai_chat_completion_client_with_tools.md
140-
- files=docs/source/getting_started/examples/chat_with_tools.md
138+
- files=docs/features/tool_calling.md
141139
- files~=^examples/tool_chat_*
142140
- files=examples/offline_inference/chat_with_tools.py
143141
- files=examples/online_serving/openai_chat_completion_client_with_tools_required.py

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# to run the OpenAI compatible server.
33

44
# Please update any changes made here to
5-
# docs/source/contributing/dockerfile/dockerfile.md and
6-
# docs/source/assets/contributing/dockerfile-stages-dependency.png
5+
# docs/contributing/dockerfile/dockerfile.md and
6+
# docs/assets/contributing/dockerfile-stages-dependency.png
77

88
ARG CUDA_VERSION=12.8.1
99
#################### BASE BUILD IMAGE ####################

docs/contributing/overview.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,8 @@ The PR needs to meet the following code quality standards:
130130
understand the code.
131131
- Include sufficient tests to ensure the project stays correct and robust. This
132132
includes both unit tests and integration tests.
133-
- Please add documentation to `docs/source/` if the PR modifies the
134-
user-facing behaviors of vLLM. It helps vLLM users understand and utilize the
135-
new features or changes.
133+
- Please add documentation to `docs/` if the PR modifies the user-facing behaviors of vLLM.
134+
It helps vLLM users understand and utilize the new features or changes.
136135

137136
### Adding or Changing Kernels
138137

Binary file not shown.

tools/update-dockerfile-graph.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if printf '%s\n' "${FILES[@]}" | grep -q "^docker/Dockerfile$"; then
2424
fi
2525

2626
# Define the target file path
27-
TARGET_GRAPH_FILE="docs/source/assets/contributing/dockerfile-stages-dependency.png"
27+
TARGET_GRAPH_FILE="docs/assets/contributing/dockerfile-stages-dependency.png"
2828

2929
# Ensure target directory exists
3030
mkdir -p "$(dirname "$TARGET_GRAPH_FILE")"

vllm/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -988,7 +988,7 @@ def verify_async_output_proc(self, parallel_config, speculative_config,
988988
self.use_async_output_proc = False
989989
return
990990

991-
# Reminder: Please update docs/source/features/compatibility_matrix.md
991+
# Reminder: Please update docs/features/compatibility_matrix.md
992992
# If the feature combo become valid
993993
from vllm.platforms import current_platform
994994
if not current_platform.is_async_output_supported(self.enforce_eager):
@@ -1004,7 +1004,7 @@ def verify_async_output_proc(self, parallel_config, speculative_config,
10041004
if self.runner_type == "pooling":
10051005
self.use_async_output_proc = False
10061006

1007-
# Reminder: Please update docs/source/features/compatibility_matrix.md
1007+
# Reminder: Please update docs/features/compatibility_matrix.md
10081008
# If the feature combo become valid
10091009
if speculative_config:
10101010
self.use_async_output_proc = False

vllm/engine/arg_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1084,7 +1084,7 @@ def create_engine_config(
10841084
disable_log_stats=self.disable_log_stats,
10851085
)
10861086

1087-
# Reminder: Please update docs/source/features/compatibility_matrix.md
1087+
# Reminder: Please update docs/features/compatibility_matrix.md
10881088
# If the feature combo become valid
10891089
if self.num_scheduler_steps > 1:
10901090
if speculative_config is not None:

vllm/engine/output_processor/multi_step.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def process_prompt_logprob(self, seq_group: SequenceGroup,
6767
@staticmethod
6868
@functools.lru_cache
6969
def _log_prompt_logprob_unsupported_warning_once():
70-
# Reminder: Please update docs/source/features/compatibility_matrix.md
70+
# Reminder: Please update docs/features/compatibility_matrix.md
7171
# If the feature combo become valid
7272
logger.warning(
7373
"Prompt logprob is not supported by multi step workers. "

vllm/platforms/cpu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def check_and_update_config(cls, vllm_config: VllmConfig) -> None:
7575
import vllm.envs as envs
7676
from vllm.utils import GiB_bytes
7777
model_config = vllm_config.model_config
78-
# Reminder: Please update docs/source/features/compatibility_matrix.md
78+
# Reminder: Please update docs/features/compatibility_matrix.md
7979
# If the feature combo become valid
8080
if not model_config.enforce_eager:
8181
model_config.enforce_eager = True

vllm/spec_decode/spec_decode_worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def create_spec_worker(*args, **kwargs) -> "SpecDecodeWorker":
114114
return spec_decode_worker
115115

116116

117-
# Reminder: Please update docs/source/features/compatibility_matrix.md
117+
# Reminder: Please update docs/features/compatibility_matrix.md
118118
# If the feature combo become valid
119119
class SpecDecodeWorker(LoRANotSupportedWorkerBase):
120120
"""Worker which implements speculative decoding.

vllm/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585

8686
# Exception strings for non-implemented encoder/decoder scenarios
8787

88-
# Reminder: Please update docs/source/features/compatibility_matrix.md
88+
# Reminder: Please update docs/features/compatibility_matrix.md
8989
# If the feature combo become valid
9090

9191
STR_NOT_IMPL_ENC_DEC_SWA = \

vllm/worker/multi_step_model_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ def _pythonize_sampler_output(
824824

825825
for sgdx, (seq_group,
826826
sample_result) in enumerate(zip(seq_groups, samples_list)):
827-
# Reminder: Please update docs/source/features/compatibility_matrix.md
827+
# Reminder: Please update docs/features/compatibility_matrix.md
828828
# If the feature combo become valid
829829
# (Check for Guided Decoding)
830830
if seq_group.sampling_params.logits_processors:

vllm/worker/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def assert_enc_dec_mr_supported_scenario(
1414
a supported scenario.
1515
'''
1616

17-
# Reminder: Please update docs/source/features/compatibility_matrix.md
17+
# Reminder: Please update docs/features/compatibility_matrix.md
1818
# If the feature combo become valid
1919

2020
if enc_dec_mr.cache_config.enable_prefix_caching:

0 commit comments

Comments
 (0)