[Feature] Add offline FastAPI documentation support for air-gapped environments (#30184)

Signed-off-by: rickychen-infinirc <ricky.chen@infinirc.com>
Signed-off-by: RickyChen / 陳昭儒 <ricky.chen@infinirc.com>
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
Co-authored-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
This commit is contained in:
RickyChen / 陳昭儒
2025-12-30 00:22:39 +08:00
committed by GitHub
parent e37e7349e6
commit b3a2bdf1ac
8 changed files with 72 additions and 3 deletions

View File

@@ -1,7 +1,6 @@
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
from fastapi import FastAPI
import vllm.envs as envs
@@ -22,6 +21,7 @@ def register_vllm_serve_api_routers(app: FastAPI):
)
attach_lora_router(app)
from vllm.entrypoints.serve.elastic_ep.api_router import (
attach_router as attach_elastic_ep_router,
)
@@ -82,6 +82,11 @@ def register_vllm_serve_api_routers(app: FastAPI):
attach_health_router(app)
from vllm.entrypoints.serve.instrumentator.offline_docs import (
attach_router as attach_offline_docs_router,
)
attach_offline_docs_router(app)
from vllm.entrypoints.serve.instrumentator.server_info import (
attach_router as attach_server_info_router,
)