exo-explore/exo · error · ValueError
No adapter found for model family: {config.model_family}
Error message
No adapter found for model family: {config.model_family} What it means
Error "No adapter found for model family: {config.model_family}" thrown in exo-explore/exo.
Source
Thrown at src/exo/worker/engines/image/models/__init__.py:91
quantize: int | None = None,
) -> ModelAdapter[Any, Any]:
"""Create a model adapter for the given configuration.
Args:
config: The model configuration
model_id: The model identifier
local_path: Path to the model weights
quantize: Optional quantization bits
Returns:
A ModelAdapter instance
Raises:
ValueError: If no adapter found for model family
"""
factory = _ADAPTER_REGISTRY.get(config.model_family)
if factory is None:
raise ValueError(f"No adapter found for model family: {config.model_family}")
return factory(config, model_id, local_path, quantize)
View on GitHub (pinned to 21a54c5ea0)
When it happens
Trigger: Thrown at src/exo/worker/engines/image/models/__init__.py:91 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of exo-explore/exo@21a54c5ea0 (2026-08-26).
Data as JSON: /api/errors/f30d6101971b2354.
Report an issue: GitHub.