We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ModelConfig
VllmConfig
1 parent fc4441a commit 6831189Copy full SHA for 6831189
vllm/config.py
@@ -3954,7 +3954,9 @@ class VllmConfig:
3954
simplifies passing around the distinct configurations in the codebase.
3955
"""
3956
3957
- model_config: ModelConfig = field(default_factory=ModelConfig)
+ # TODO: use default_factory once default constructing ModelConfig doesn't
3958
+ # try to download a model
3959
+ model_config: ModelConfig = None # type: ignore
3960
"""Model configuration."""
3961
cache_config: CacheConfig = field(default_factory=CacheConfig)
3962
"""Cache configuration."""
0 commit comments