Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
062b7896
Unverified
Commit
062b7896
authored
Feb 26, 2026
by
Wentao Ye
Committed by
GitHub
Feb 27, 2026
Browse files
[Bug] Fix outdated links in source code (#35314)
Signed-off-by:
yewentao256
<
zhyanwentao@126.com
>
parent
a532c838
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
7 deletions
+11
-7
.github/mergify.yml
.github/mergify.yml
+1
-2
docs/design/metrics.md
docs/design/metrics.md
+1
-1
tools/profiler/print_layerwise_table.py
tools/profiler/print_layerwise_table.py
+4
-1
tools/profiler/visualize_layerwise_profile.py
tools/profiler/visualize_layerwise_profile.py
+4
-2
vllm/model_executor/models/config.py
vllm/model_executor/models/config.py
+1
-1
No files found.
.github/mergify.yml
View file @
062b7896
...
@@ -259,8 +259,7 @@ pull_request_rules:
...
@@ -259,8 +259,7 @@ pull_request_rules:
-
files=benchmarks/run_structured_output_benchmark.sh
-
files=benchmarks/run_structured_output_benchmark.sh
-
files=docs/features/structured_outputs.md
-
files=docs/features/structured_outputs.md
-
files=examples/offline_inference/structured_outputs.py
-
files=examples/offline_inference/structured_outputs.py
-
files=examples/online_serving/openai_chat_completion_structured_outputs.py
-
files=examples/online_serving/structured_outputs/structured_outputs.py
-
files=examples/online_serving/openai_chat_completion_structured_outputs_with_reasoning.py
-
files~=^tests/v1/structured_output/
-
files~=^tests/v1/structured_output/
-
files=tests/v1/entrypoints/llm/test_struct_output_generate.py
-
files=tests/v1/entrypoints/llm/test_struct_output_generate.py
-
files~=^vllm/v1/structured_output/
-
files~=^vllm/v1/structured_output/
...
...
docs/design/metrics.md
View file @
062b7896
...
@@ -656,7 +656,7 @@ vLLM has support for OpenTelemetry tracing:
...
@@ -656,7 +656,7 @@ vLLM has support for OpenTelemetry tracing:
- Added by <https://github.com/vllm-project/vllm/pull/4687> and reinstated by <https://github.com/vllm-project/vllm/pull/20372>
- Added by <https://github.com/vllm-project/vllm/pull/4687> and reinstated by <https://github.com/vllm-project/vllm/pull/20372>
- Configured with `
--oltp-traces-endpoint
` and `
--collect-detailed-traces
`
- Configured with `
--oltp-traces-endpoint
` and `
--collect-detailed-traces
`
- [OpenTelemetry blog post](https://opentelemetry.io/blog/2024/llm-observability/)
- [OpenTelemetry blog post](https://opentelemetry.io/blog/2024/llm-observability/)
- [User-facing docs](../examples/online_serving/opentelemetry.md)
- [User-facing docs](../
../
examples/online_serving/opentelemetry
/README
.md)
- [Blog post](https://medium.com/@ronen.schaffer/follow-the-trail-supercharging-vllm-with-opentelemetry-distributed-tracing-aa655229b46f)
- [Blog post](https://medium.com/@ronen.schaffer/follow-the-trail-supercharging-vllm-with-opentelemetry-distributed-tracing-aa655229b46f)
- [IBM product docs](https://www.ibm.com/docs/en/instana-observability/current?topic=mgaa-monitoring-large-language-models-llms-vllm-public-preview)
- [IBM product docs](https://www.ibm.com/docs/en/instana-observability/current?topic=mgaa-monitoring-large-language-models-llms-vllm-public-preview)
...
...
tools/profiler/print_layerwise_table.py
View file @
062b7896
...
@@ -33,7 +33,10 @@ if __name__ == "__main__":
...
@@ -33,7 +33,10 @@ if __name__ == "__main__":
"--json-trace"
,
"--json-trace"
,
type
=
str
,
type
=
str
,
required
=
True
,
required
=
True
,
help
=
"json trace file output by examples/offline_inference/profiling.py"
,
help
=
(
"JSON trace file generated by scripts that use "
"vllm.profiler.layerwise_profile"
),
)
)
parser
.
add_argument
(
parser
.
add_argument
(
"--phase"
,
"--phase"
,
...
...
tools/profiler/visualize_layerwise_profile.py
View file @
062b7896
...
@@ -564,8 +564,10 @@ if __name__ == "__main__":
...
@@ -564,8 +564,10 @@ if __name__ == "__main__":
"--json-trace"
,
"--json-trace"
,
type
=
str
,
type
=
str
,
required
=
True
,
required
=
True
,
help
=
"json trace file output by
\
help
=
(
examples/offline_inference/profiling.py"
,
"JSON trace file generated by scripts that use "
"vllm.profiler.layerwise_profile"
),
)
)
parser
.
add_argument
(
parser
.
add_argument
(
"--output-directory"
,
type
=
str
,
required
=
False
,
help
=
"Directory to output plots"
"--output-directory"
,
type
=
str
,
required
=
False
,
help
=
"Directory to output plots"
...
...
vllm/model_executor/models/config.py
View file @
062b7896
...
@@ -213,7 +213,7 @@ class NomicBertModelConfig(VerifyAndUpdateConfig):
...
@@ -213,7 +213,7 @@ class NomicBertModelConfig(VerifyAndUpdateConfig):
"Nomic context extension is disabled. "
"Nomic context extension is disabled. "
"Changing max_model_len from %s to %s. "
"Changing max_model_len from %s to %s. "
"To enable context extension, see: "
"To enable context extension, see: "
"https://github.com/vllm-project/vllm/tree/main/examples/offline_inference/context_extension.
html
"
,
"https://github.com/vllm-project/vllm/tree/main/examples/offline_inference/context_extension.
py
"
,
max_model_len_before
,
max_model_len_before
,
model_config
.
max_model_len
,
model_config
.
max_model_len
,
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment