# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import asyncio import uuid import uvloop import vllm from common.parser import parse_vllm_args from common.protocol import Request, Response from triton_distributed_rs import DistributedRuntime, triton_endpoint, triton_worker from vllm.engine.arg_utils import AsyncEngineArgs from vllm.logger import logger as vllm_logger class VllmEngine: """ Request handler for the generate endpoint """ def __init__(self, engine_args: AsyncEngineArgs): self.engine = vllm.AsyncLLMEngine.from_engine_args(engine_args) @triton_endpoint(Request, Response) async def generate(self, request): vllm_logger.debug(f"Received request: {request}") sampling_params = vllm.SamplingParams(**request.sampling_params) request_id = str(uuid.uuid4()) async for response in self.engine.generate( request.prompt, sampling_params, request_id ): vllm_logger.debug(f"Generated response: {response}") yield response.outputs[0].text @triton_worker() async def worker(runtime: DistributedRuntime, engine_args: AsyncEngineArgs): """ Instantiate a `backend` component and serve the `generate` endpoint A `Component` can serve multiple endpoints """ component = runtime.namespace("triton-init").component("vllm") await component.create_service() endpoint = component.endpoint("generate") await endpoint.serve_endpoint(VllmEngine(engine_args).generate) if __name__ == "__main__": uvloop.install() engine_args = parse_vllm_args() asyncio.run(worker(engine_args))