Move LoadConfig from config/__init__.py to config/load.py (#24566)

Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
This commit is contained in:
Harry Mellor
2025-09-10 14:14:18 +01:00
committed by GitHub
parent 9e3c3a7df2
commit f36355abfd
17 changed files with 137 additions and 107 deletions

View File

@@ -4,7 +4,8 @@
import pytest
from torch import nn
from vllm.config import LoadConfig, ModelConfig
from vllm.config import ModelConfig
from vllm.config.load import LoadConfig
from vllm.model_executor.model_loader import (get_model_loader,
register_model_loader)
from vllm.model_executor.model_loader.base_loader import BaseModelLoader