From b3fbf1e18cb680cbfac9843a692640b890f22e5e Mon Sep 17 00:00:00 2001 From: Fred Reiss Date: Sat, 15 Feb 2025 17:23:37 -0800 Subject: [PATCH] Remove unneeded pydoc --- llama_stack/providers/inline/inference/vllm/vllm.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/llama_stack/providers/inline/inference/vllm/vllm.py b/llama_stack/providers/inline/inference/vllm/vllm.py index b3f226b98..7e27edaa4 100644 --- a/llama_stack/providers/inline/inference/vllm/vllm.py +++ b/llama_stack/providers/inline/inference/vllm/vllm.py @@ -228,10 +228,6 @@ class VLLMInferenceImpl(Inference, ModelsProtocolPrivate): pass async def shutdown(self) -> None: - """ - Callback that apparently is invoked when shutting down the Llama Stack server. Not sure how - to shut down a Llama Stack server in such a way as to trigger this callback. - """ logger.info(f"Shutting down inline vLLM inference provider {self}.") if self.engine is not None: self.engine.shutdown_background_loop()