We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04ee42d commit 344599bCopy full SHA for 344599b
src/vllm_router/services/batch_service/__init__.py
@@ -6,7 +6,9 @@ def initialize_batch_processor(
6
batch_processor_name: str, storage_path: str, storage: Storage
7
) -> BatchProcessor:
8
if batch_processor_name == "local":
9
- from vllm_router.services.batch_service.local_processor import LocalBatchProcessor
+ from vllm_router.services.batch_service.local_processor import (
10
+ LocalBatchProcessor,
11
+ )
12
13
return LocalBatchProcessor(storage_path, storage)
14
else:
0 commit comments