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
ac188658
Unverified
Commit
ac188658
authored
Dec 03, 2025
by
Wentao Ye
Committed by
GitHub
Dec 03, 2025
Browse files
[CI] Fix re import error (#29973)
Signed-off-by:
yewentao256
<
zhyanwentao@126.com
>
parent
2fc5d6e0
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
.buildkite/scripts/generate-nightly-index.py
.buildkite/scripts/generate-nightly-index.py
+2
-1
vllm/entrypoints/serve/instrumentator/metrics.py
vllm/entrypoints/serve/instrumentator/metrics.py
+1
-2
vllm/tokenizers/deepseek_v32_encoding.py
vllm/tokenizers/deepseek_v32_encoding.py
+2
-1
No files found.
.buildkite/scripts/generate-nightly-index.py
View file @
ac188658
...
@@ -7,13 +7,14 @@
...
@@ -7,13 +7,14 @@
import
argparse
import
argparse
import
json
import
json
import
re
import
sys
import
sys
from
dataclasses
import
asdict
,
dataclass
from
dataclasses
import
asdict
,
dataclass
from
pathlib
import
Path
from
pathlib
import
Path
from
typing
import
Any
from
typing
import
Any
from
urllib.parse
import
quote
from
urllib.parse
import
quote
import
regex
as
re
if
not
sys
.
version_info
>=
(
3
,
12
):
if
not
sys
.
version_info
>=
(
3
,
12
):
raise
RuntimeError
(
"This script requires Python 3.12 or higher."
)
raise
RuntimeError
(
"This script requires Python 3.12 or higher."
)
...
...
vllm/entrypoints/serve/instrumentator/metrics.py
View file @
ac188658
...
@@ -2,9 +2,8 @@
...
@@ -2,9 +2,8 @@
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
import
re
import
prometheus_client
import
prometheus_client
import
regex
as
re
from
fastapi
import
FastAPI
,
Response
from
fastapi
import
FastAPI
,
Response
from
prometheus_client
import
make_asgi_app
from
prometheus_client
import
make_asgi_app
from
prometheus_fastapi_instrumentator
import
Instrumentator
from
prometheus_fastapi_instrumentator
import
Instrumentator
...
...
vllm/tokenizers/deepseek_v32_encoding.py
View file @
ac188658
...
@@ -5,9 +5,10 @@
...
@@ -5,9 +5,10 @@
# copy from https://huggingface.co/deepseek-ai/DeepSeek-V3.2/blob/main/encoding/encoding_dsv32.py
# copy from https://huggingface.co/deepseek-ai/DeepSeek-V3.2/blob/main/encoding/encoding_dsv32.py
import
copy
import
copy
import
json
import
json
import
re
from
typing
import
Any
from
typing
import
Any
import
regex
as
re
# flake8: noqa: E501
# flake8: noqa: E501
TOOLS_SYSTEM_TEMPLATE
=
"""## Tools
TOOLS_SYSTEM_TEMPLATE
=
"""## Tools
You have access to a set of tools you can use to answer the user's question.
You have access to a set of tools you can use to answer the user's question.
...
...
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