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

@@ -6,8 +6,9 @@ from dataclasses import MISSING, Field, asdict, dataclass, field
import pytest
from vllm.compilation.backends import VllmBackend
from vllm.config import (LoadConfig, ModelConfig, PoolerConfig, VllmConfig,
get_field, update_config)
from vllm.config import (ModelConfig, PoolerConfig, VllmConfig, get_field,
update_config)
from vllm.config.load import LoadConfig
from vllm.model_executor.layers.pooler import PoolingType
from vllm.platforms import current_platform